:root {
  --ivory: #fff9e8;
  --paper: #fff1bb;
  --ink: #2f2715;
  --muted: #756b55;
  --leaf: #4d6c42;
  --leaf-dark: #364f32;
  --sun: #f4bd23;
  --sun-soft: #ffe089;
  --sun-dark: #a86a06;
  --honey: #d88916;
  --line: rgba(62, 50, 24, 0.14);
  --shadow: 0 24px 70px rgba(62, 50, 24, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 12px 34px rgba(36, 48, 43, 0.1);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: #57340b;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  border-color: var(--line);
  background: #704411;
  color: var(--ink);
}

.brand-mark .petal {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 18px;
  border-radius: 999px 999px 70% 70%;
  background: var(--sun);
  transform-origin: 50% 22px;
}

.brand-mark .petal-1 {
  transform: translate(-50%, -50%) rotate(0deg);
}

.brand-mark .petal-2 {
  transform: translate(-50%, -50%) rotate(45deg);
}

.brand-mark .petal-3 {
  transform: translate(-50%, -50%) rotate(90deg);
}

.brand-mark .petal-4 {
  transform: translate(-50%, -50%) rotate(135deg);
}

.brand-mark .petal-5 {
  transform: translate(-50%, -50%) rotate(180deg);
}

.brand-mark .petal-6 {
  transform: translate(-50%, -50%) rotate(225deg);
}

.brand-mark .petal-7 {
  transform: translate(-50%, -50%) rotate(270deg);
}

.brand-mark .petal-8 {
  transform: translate(-50%, -50%) rotate(315deg);
}

.brand-mark strong {
  position: relative;
  z-index: 1;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: #5b360d;
  color: #fff6cf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  line-height: 1;
}

.brand > span:last-child strong,
.brand small {
  display: block;
}

.brand > span:last-child strong {
  font-size: 15px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.82;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  position: relative;
  padding: 6px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  border-color: var(--line);
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  grid-column: 1;
  grid-row: 1;
  width: 17px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.site-header.is-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(56, 37, 7, 0.74) 0%, rgba(56, 37, 7, 0.4) 44%, rgba(56, 37, 7, 0.08) 100%),
    linear-gradient(0deg, rgba(56, 37, 7, 0.32) 0%, rgba(56, 37, 7, 0) 42%);
}

.hero-content {
  align-self: end;
  width: min(720px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 96px) clamp(62px, 9vw, 112px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--sun-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun-soft);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  font-size: clamp(52px, 8vw, 112px);
}

h2 {
  font-size: clamp(34px, 5vw, 70px);
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.3vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--sun);
  color: #332006;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #e0a80e;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--leaf-dark);
  color: #fff;
}

.quick-info div {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px) clamp(18px, 4vw, 58px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2.5vw, 28px);
  line-height: 1.1;
}

.brand-story {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 6vw, 96px);
  background: #ffe7a1;
  color: var(--ink);
}

.brand-story p {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.18;
}

.sunflower-symbol {
  position: relative;
  width: clamp(72px, 10vw, 118px);
  height: clamp(72px, 10vw, 118px);
  border-radius: 50%;
  background:
    radial-gradient(circle, #5b360d 0 26%, transparent 27%),
    repeating-conic-gradient(from 9deg, #f4bd23 0deg 14deg, #e99c0d 14deg 22deg, transparent 22deg 30deg);
}

.sunflower-symbol span {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: #5b360d;
  box-shadow: inset 0 0 0 4px rgba(255, 236, 150, 0.2);
}

.section {
  padding: clamp(74px, 10vw, 132px) clamp(18px, 6vw, 96px);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.about-text {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.about-text p {
  margin: 0;
}

.section-heading {
  width: min(860px, 100%);
  margin-bottom: clamp(34px, 5vw, 56px);
}

.creation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.creation-card {
  min-height: 285px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 16px 45px rgba(36, 48, 43, 0.07);
}

.creation-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--sun-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
}

.creation-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 6vw, 96px) clamp(74px, 10vw, 132px);
}

.showcase-item {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-item.tall {
  grid-row: span 2;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.showcase-item:nth-child(1) img {
  object-position: 70% 50%;
}

.showcase-item:nth-child(2) img {
  object-position: 12% 78%;
}

.showcase-item:nth-child(3) img {
  object-position: 52% 18%;
}

.showcase-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(18, 25, 22, 0.74), rgba(18, 25, 22, 0));
  content: "";
}

.showcase-item figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.05;
}

.process {
  background: #fff0bd;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: rgba(36, 48, 43, 0.12);
  list-style: none;
}

.steps li {
  min-height: 295px;
  padding: clamp(22px, 3vw, 32px);
  background: #fbfff9;
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 50%;
  background: var(--sun);
  color: #332006;
  font-weight: 800;
}

.steps p {
  margin: 15px 0 0;
  color: var(--muted);
}

.testimonial {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 12vw, 180px);
  background: var(--sun-dark);
  color: #fff;
  text-align: center;
}

.testimonial p {
  margin: 0 auto;
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 86px);
  padding: clamp(74px, 10vw, 132px) clamp(18px, 6vw, 96px);
  background:
    radial-gradient(circle at 8% 28%, rgba(244, 189, 35, 0.28), transparent 34%),
    linear-gradient(135deg, #fff9e8 0%, #fff0bd 100%);
}

.contact-copy p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-links a {
  width: fit-content;
  color: var(--sun-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.contact-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 56px rgba(36, 48, 43, 0.1);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(36, 48, 43, 0.18);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  min-height: 124px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sun-dark);
  outline: 3px solid rgba(244, 189, 35, 0.24);
}

.form-button {
  margin-top: 4px;
  border-radius: 8px;
  cursor: pointer;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 6vw, 96px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 800;
}

@media (max-width: 980px) {
  .creation-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .showcase {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .showcase-item.tall {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand > span:last-child strong {
    max-width: 188px;
    white-space: normal;
    line-height: 1.08;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 242, 0.97);
    color: var(--ink);
    box-shadow: 0 24px 54px rgba(36, 48, 43, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 12px;
  }

  .nav a::after {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(56, 37, 7, 0.84) 0%, rgba(56, 37, 7, 0.58) 62%, rgba(56, 37, 7, 0.26) 100%),
      linear-gradient(0deg, rgba(56, 37, 7, 0.42) 0%, rgba(56, 37, 7, 0) 48%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 42px;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(43px, 13vw, 56px);
  }

  .hero-copy {
    max-width: 30ch;
    font-size: 17px;
    line-height: 1.42;
  }

  .button {
    width: 100%;
  }

  .quick-info,
  .brand-story,
  .creation-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .quick-info div:last-child {
    border-bottom: 0;
  }

  .section,
  .contact {
    padding-right: 18px;
    padding-left: 18px;
  }

  .creation-card,
  .steps li {
    min-height: auto;
  }

  .steps span {
    margin-bottom: 28px;
  }

  .showcase {
    padding-right: 18px;
    padding-left: 18px;
  }

  .showcase-item {
    min-height: 245px;
  }

  .footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
