:root {
  --bg: #f7f1eb;
  --bg-strong: #efe2d4;
  --surface: rgba(255, 248, 242, 0.76);
  --surface-strong: #fffaf5;
  --text: #5f341b;
  --text-soft: #8b5e40;
  --accent: #b24a20;
  --accent-deep: #8f3b19;
  --line: rgba(178, 74, 32, 0.16);
  --shadow: 0 24px 60px rgba(111, 70, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 32%),
    radial-gradient(circle at bottom right, rgba(178, 74, 32, 0.16), transparent 22%),
    linear-gradient(135deg, #fbf7f2 0%, #f2e5d7 52%, #f8f0e8 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -8rem;
  right: -7rem;
  background: rgba(178, 74, 32, 0.1);
}

body::after {
  bottom: -10rem;
  left: -7rem;
  background: rgba(231, 198, 169, 0.35);
}

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 4rem;
  animation: rise-in 700ms ease-out both;
}

.insta-preview {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}

.insta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(178, 74, 32, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.72);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insta-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d37f4f, #a25028);
  box-shadow: 0 0 0 5px rgba(178, 74, 32, 0.14);
}

.insta-card {
  display: grid;
  gap: 1.2rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.6rem;
  background: linear-gradient(145deg, rgba(255, 250, 245, 0.88), rgba(244, 232, 220, 0.78));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.insta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.insta-head strong {
  display: block;
  font-size: 1.05rem;
}

.insta-head span {
  color: var(--text-soft);
}

.insta-head a {
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid rgba(178, 74, 32, 0.14);
  font-weight: 700;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.insta-post {
  position: relative;
  display: block;
  min-height: 12rem;
  overflow: hidden;
  border-radius: 1.3rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 30%),
    linear-gradient(180deg, rgba(255, 247, 238, 0.92), rgba(236, 214, 194, 0.96));
  border: 1px solid rgba(178, 74, 32, 0.12);
}

.insta-post::before,
.insta-post::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(178, 74, 32, 0.18);
  border-radius: 999px 999px 0 999px;
}

.insta-post::before {
  right: 1rem;
  bottom: -1rem;
  width: 3.6rem;
  height: 10rem;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(6deg);
}

.insta-post::after {
  left: 1rem;
  top: 1rem;
  width: 4rem;
  height: 4rem;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-30deg);
  opacity: 0.6;
}

.insta-post img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
}

.insta-post-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(67, 35, 17, 0.78));
}

.insta-post-overlay strong,
.insta-post-overlay span {
  position: relative;
  z-index: 1;
}

.insta-post-overlay strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff6ef;
}

.insta-post-overlay span:last-child {
  color: rgba(255, 246, 239, 0.82);
  font-size: 0.92rem;
}

.insta-post-tag {
  width: fit-content;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.72);
  border: 1px solid rgba(178, 74, 32, 0.12);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(178, 74, 32, 0.22);
  border-radius: 999px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: rgba(255, 250, 245, 0.85);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong,
.brand-copy span {
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.22em;
}

.brand-copy span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.nav-cta,
.button {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(178, 74, 32, 0.16);
  background: rgba(255, 250, 245, 0.85);
}

.nav-cta:hover,
.button:hover,
.contact-grid a:hover {
  transform: translateY(-2px);
}

.hero-panel,
.highlight,
.contact-grid a,
.service-card,
.story-grid article {
  backdrop-filter: blur(16px);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(255, 251, 247, 0.88), rgba(246, 234, 222, 0.8));
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.service-card h3,
.story-grid h3,
.highlight-panel strong,
.card-name {
  font-family: "Cormorant Garamond", serif;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
  line-height: 0.94;
  max-width: 18ch;
}

.hero-heading-soft,
.hero-heading-brand {
  display: block;
}

.hero-heading-soft {
  font-family: "Forum", serif;
  font-size: 0.46em;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #9a3f1b;
  margin-bottom: 0.14em;
}

.hero-heading-brand {
  font-size: 1.34em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.84;
  color: #b24a20;
  text-shadow: 0 10px 24px rgba(178, 74, 32, 0.18);
  margin-bottom: 0.1em;
  margin-top: 0.1em;
}

.lead {
  max-width: 56ch;
  margin: 1.2rem 0 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-primary {
  color: #fff8f1;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 28px rgba(178, 74, 32, 0.22);
}

.button-secondary {
  border-color: rgba(178, 74, 32, 0.22);
  background: rgba(255, 250, 245, 0.8);
}

.hero-details {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text-soft);
}

.hero-details li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-details li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(178, 74, 32, 0.12);
}

.card-preview {
  display: flex;
  justify-content: center;
}

.card-surface {
  position: relative;
  overflow: hidden;
  width: min(100%, 380px);
  min-height: 470px;
  padding: 2rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(178, 74, 32, 0.14);
  background: linear-gradient(180deg, #fff7ee 0%, #f8ebdd 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 18px 40px rgba(111, 70, 37, 0.12);
}

.card-name {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.card-role {
  margin: 0.6rem 0 2rem;
  width: auto;
  color: var(--accent-deep);
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.card-contacts {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  max-width: max-content;
  color: var(--text-soft);
  font-weight: 600;
}

.card-contacts span {
  white-space: nowrap;
}

.botanical {
  position: absolute;
  border: 1px solid rgba(178, 74, 32, 0.25);
  border-radius: 999px 999px 0 999px;
  opacity: 0.72;
}

.botanical-main {
  right: 2.5rem;
  bottom: -2rem;
  width: 5.8rem;
  height: 19rem;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(6deg);
}

.botanical-soft {
  right: 5.2rem;
  bottom: 5.8rem;
  width: 2.6rem;
  height: 6rem;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-18deg);
}

.section {
  padding: 5.5rem 0 0;
  animation: fade-up 900ms ease-out both;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
}

.section-heading.narrow {
  max-width: 40rem;
}

.story-grid,
.services-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid article,
.service-card,
.contact-grid a,
.highlight-panel {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.story-grid article,
.service-card,
.contact-grid a {
  padding: 1.5rem;
}

.story-grid h3,
.service-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.8rem;
}

.story-grid p,
.service-card p,
.highlight-copy p,
.contact-grid span {
  color: var(--text-soft);
  line-height: 1.8;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
}

.highlight {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: stretch;
}

.highlight-copy,
.highlight-panel {
  padding: 2rem;
}

.highlight-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  background:
    linear-gradient(160deg, rgba(255, 249, 243, 0.86), rgba(233, 210, 190, 0.78)),
    radial-gradient(circle at top right, rgba(178, 74, 32, 0.18), transparent 42%);
}

.highlight-panel p {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--accent);
}

.highlight-panel strong {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid a strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .hero-panel,
  .highlight,
  .story-grid,
  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 2rem;
  }

  .hero-copy h1 {
    max-width: 16ch;
  }

  .insta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, 100%);
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1.5rem;
  }

  .insta-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-panel {
    border-radius: 1.5rem;
    padding: 1.3rem;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
    max-width: 100%;
  }

  .section {
    padding-top: 4rem;
  }

  .card-surface {
    min-height: 400px;
    padding: 1.5rem;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
