@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,600&display=swap");

:root {
  --ink: #102d2e;
  --ink-soft: #315052;
  --cream: #f3eee6;
  --paper: #fbf8f2;
  --orange: #f26a3d;
  --orange-dark: #d94d23;
  --lime: #dbea89;
  --line: rgba(16, 45, 46, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

::selection {
  background: var(--orange);
  color: white;
}

.page-shell {
  width: min(1420px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 80px rgba(16, 45, 46, 0.08);
}

.site-header,
.hero,
.content-section,
.contact,
footer {
  padding-right: clamp(24px, 6vw, 88px);
  padding-left: clamp(24px, 6vw, 88px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.logo {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.logo span {
  color: var(--orange);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

nav a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

nav a:not(.nav-social)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--orange);
  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;
}

.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 9px 16px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-social:hover,
.nav-social:focus-visible {
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(44px, 7vw, 108px);
  align-items: center;
  min-height: 720px;
  padding-top: clamp(64px, 8vw, 116px);
  padding-bottom: clamp(82px, 10vw, 140px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(4rem, 8.5vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

h1 em,
h2 em {
  color: var(--orange);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

.intro {
  max-width: 580px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  background: var(--orange);
  box-shadow: 0 10px 30px rgba(242, 106, 61, 0.24);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
  box-shadow: 0 14px 35px rgba(242, 106, 61, 0.3);
  transform: translateY(-3px);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.hero-visual {
  position: relative;
  margin: 0;
}

.image-frame {
  position: relative;
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: 48% 48% 24px 24px;
  background: #d8b06b;
  box-shadow: 25px 32px 0 var(--lime);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 45, 46, 0.26));
  content: "";
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual:hover img {
  transform: scale(1.035);
}

.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visual-stamp {
  position: absolute;
  right: -45px;
  bottom: 32px;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.content-section {
  padding-top: clamp(88px, 10vw, 150px);
  padding-bottom: clamp(94px, 11vw, 165px);
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  column-gap: 60px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.section-heading > p:last-child {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--ink-soft);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  background: var(--paper);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card::before {
  position: absolute;
  top: -55px;
  right: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  transition: transform 350ms ease;
}

.card:hover {
  box-shadow: 0 24px 40px rgba(16, 45, 46, 0.1);
  transform: translateY(-8px);
}

.card:hover::before {
  transform: scale(1.15);
}

.card-featured {
  background: var(--ink);
  color: white;
}

.card-number,
.card-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.card-number {
  color: var(--orange);
}

.card-kicker {
  margin: 0 0 3px;
  color: var(--orange);
}

.card h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.card div > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.card-featured div > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.card-arrow {
  position: absolute;
  right: 28px;
  bottom: 26px;
  font-size: 1.35rem;
}

.card div {
  padding-right: 32px;
}

.about {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(90px, 11vw, 160px) clamp(24px, 10vw, 150px);
  background: var(--ink);
  color: white;
}

.eyebrow-light {
  color: var(--lime);
}

.about-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vertical-note {
  margin: 80px 0 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}

.about-copy {
  max-width: 760px;
}

.about-copy h2 {
  margin-bottom: 46px;
}

.about-copy > p {
  max-width: 650px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.about-copy .text-link {
  margin-top: 24px;
}

.text-link-light {
  color: var(--lime);
}

.contact {
  padding-top: clamp(100px, 12vw, 170px);
  padding-bottom: clamp(110px, 13vw, 190px);
  text-align: center;
}

.contact .eyebrow {
  justify-content: center;
}

.contact h2 {
  margin-bottom: 28px;
}

.contact > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 48px;
  color: var(--ink-soft);
}

.instagram-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(600px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  background: white;
  text-align: left;
  text-decoration: none;
  transition: border 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.instagram-card:hover,
.instagram-card:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 20px 50px rgba(16, 45, 46, 0.11);
  transform: translateY(-5px);
}

.instagram-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
}

.instagram-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-icon .icon-dot {
  fill: currentColor;
  stroke: none;
}

.instagram-card small,
.instagram-card strong {
  display: block;
}

.instagram-card small {
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-card strong {
  font-size: clamp(1rem, 3vw, 1.35rem);
  letter-spacing: -0.03em;
}

.instagram-arrow {
  font-size: 1.5rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  padding-bottom: 32px;
}

footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer p:last-child {
  text-align: right;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(560px, 88%);
    margin: 20px auto 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: 24px;
  }

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

  .card {
    min-height: 270px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 76px;
  }

  nav > a:not(.nav-social) {
    display: none;
  }

  .nav-social {
    padding: 7px 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    width: 92%;
  }

  .image-frame {
    box-shadow: 14px 18px 0 var(--lime);
  }

  .visual-stamp {
    right: -22px;
    bottom: 24px;
    width: 78px;
    height: 78px;
  }

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

  .vertical-note {
    display: none;
  }

  .instagram-card {
    gap: 14px;
    padding: 14px;
  }

  .instagram-icon {
    width: 48px;
    height: 48px;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer p:last-child {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
