:root {
  --bg: #fff7e8;
  --panel: #fffdf7;
  --ink: #1f2933;
  --muted: #5e6874;
  --dark: #1f3428;
  --accent: #e7802f;
  --accent-2: #2f9e7e;
  --line: rgba(31, 41, 51, 0.14);
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.2rem;
  line-height: 1.1;
}

.brand small {
  max-width: 330px;
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 25px);
  font-weight: 800;
}

.main-nav a {
  padding: 10px 0;
  color: var(--ink);
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav .active {
  color: var(--accent);
  border-color: var(--accent);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero,
.policy-strip,
.guide-section,
.showcase-section,
.editorial-section,
.content-section,
.faq-section,
.cta-section,
.subhero,
.about-layout,
.value-section,
.contact-layout,
.legal-layout,
.success-panel {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: 760px;
  padding: clamp(58px, 8vw, 110px) 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  margin: 16px 0 22px;
  font-size: clamp(3rem, 7.5vw, 6.9rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.1rem);
}

h3 {
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
}

p {
  color: var(--muted);
}

.hero-copy p,
.section-heading p,
.content-section p,
.subhero p,
.cta-section p,
.success-panel p {
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
.contact-form button {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 15px 34px color-mix(in srgb, var(--accent) 34%, transparent);
}

.button.secondary {
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--dark);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: min(650px, 72vh);
  min-height: 440px;
  object-fit: cover;
}

.media-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  max-width: 170px;
  padding: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
}

.media-note strong {
  font-size: 2rem;
  line-height: 1;
}

.policy-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 14px;
}

.policy-strip div {
  padding: 28px;
  background: var(--dark);
}

.policy-strip strong,
.policy-strip p {
  color: #fff;
}

.guide-section,
.showcase-section,
.faq-section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

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

.feature-card,
.shot-card,
.editorial-grid article,
.steps article,
.faq-grid details,
.studio-card,
.contact-form,
.contact-card,
.legal-aside,
.legal-content article,
.value-section article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.08);
}

.feature-card,
.editorial-grid article,
.steps article,
.faq-grid details,
.value-section article {
  padding: 24px;
}

.feature-card span {
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

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

.shot-card {
  overflow: hidden;
}

.shot-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.shot-card div {
  padding: 24px;
}

.shot-card small {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.editorial-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
  padding: clamp(64px, 8vw, 104px) 0;
}

.editorial-copy {
  position: sticky;
  top: 110px;
}

.editorial-grid {
  display: grid;
  gap: 18px;
}

.content-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
  padding: clamp(64px, 8vw, 104px) clamp(24px, 4vw, 48px);
  color: #fff;
  background: var(--dark);
  border-radius: 14px;
}

.content-section h2,
.content-section h3,
.content-section p,
.content-section b {
  color: #fff;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

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

.faq-grid summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.cta-section,
.success-panel {
  margin-bottom: clamp(72px, 10vw, 130px);
  padding: clamp(44px, 7vw, 78px);
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--dark), color-mix(in srgb, var(--dark) 72%, var(--accent)));
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.cta-section h2,
.cta-section p,
.success-panel h1,
.success-panel p {
  color: #fff;
}

.subhero {
  padding: clamp(70px, 10vw, 124px) 0 clamp(38px, 6vw, 76px);
}

.subhero h1 {
  max-width: 1000px;
}

.subhero p {
  max-width: 820px;
}

.about-layout,
.contact-layout,
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  padding-bottom: clamp(72px, 10vw, 120px);
}

.about-copy,
.legal-content {
  display: grid;
  gap: 18px;
}

.about-copy p,
.legal-content article {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.studio-card,
.contact-card,
.legal-aside {
  align-self: start;
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 600;
}

.consent input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.consent a {
  color: var(--accent);
  font-weight: 900;
}

.contact-card {
  color: #fff;
  background: var(--dark);
}

.contact-card h2,
.contact-card p,
.contact-card strong {
  color: #fff;
}

.legal-layout {
  grid-template-columns: 320px minmax(0, 1fr);
}

.legal-aside {
  position: sticky;
  top: 110px;
}

.site-footer {
  padding: clamp(46px, 7vw, 76px) clamp(18px, 4vw, 64px) 28px;
  color: #fff;
  background: var(--dark);
}

.site-footer p,
.site-footer a,
.site-footer span,
.site-footer strong {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid span {
  font-weight: 900;
  opacity: 0.75;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.tower .hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.tower .hero-copy {
  max-width: 590px;
}

.tower h1 {
  font-size: clamp(3rem, 6.1vw, 5.8rem);
}

.tower .hero-media {
  transform: skewY(-1deg);
}

.tower .hero-media img,
.tower .media-note {
  transform: skewY(1deg);
}

.chicken .hero-media {
  border: 10px solid #fff;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .hero,
  .tower .hero,
  .policy-strip,
  .editorial-section,
  .content-section,
  .about-layout,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .shot-grid,
  .faq-grid,
  .value-section,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-copy,
  .legal-aside {
    position: static;
  }
}

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

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-media img {
    min-height: 320px;
  }

  .feature-grid,
  .shot-grid,
  .faq-grid,
  .value-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

.chicken {
  background:
    linear-gradient(180deg, #fff7e8 0%, #fff7e8 54%, #f2f7e8 54%, #f2f7e8 100%);
}

.chicken .site-header {
  background: rgba(255, 253, 247, 0.95);
}

.chicken .hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
  min-height: 780px;
}

.chicken .hero-copy {
  padding: 42px 0 86px;
}

.chicken .hero-copy h1 {
  max-width: 720px;
  color: #1d2a22;
  font-size: clamp(3.2rem, 7.8vw, 7.1rem);
}

.chicken .hero-copy p {
  max-width: 640px;
  color: #526050;
}

.chicken .hero-media {
  border: 0;
  border-radius: 34px 34px 160px 34px;
  box-shadow: 0 30px 90px rgba(55, 80, 44, 0.22);
}

.chicken .hero-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px 24px 130px 24px;
  pointer-events: none;
}

.chicken .hero-media img {
  height: min(690px, 74vh);
}

.chicken .media-note {
  right: 28px;
  bottom: 28px;
  background: rgba(31, 52, 40, 0.86);
}

.chicken .policy-strip {
  gap: 18px;
  background: transparent;
}

.chicken .policy-strip div {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(31, 52, 40, 0.12);
  border-radius: 22px;
  box-shadow: 0 16px 46px rgba(87, 104, 74, 0.12);
}

.chicken .policy-strip strong {
  color: #1d2a22;
}

.chicken .policy-strip p {
  color: #526050;
}

.chicken .guide-section {
  padding-top: clamp(92px, 12vw, 154px);
}

.chicken .feature-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
}

.chicken .feature-card {
  border-radius: 28px;
}

.chicken .feature-card:nth-child(odd) {
  transform: translateY(28px);
  background: #fffdf7;
}

.chicken .feature-card:nth-child(even) {
  background: #f6fbef;
}

.chicken .shot-card {
  border-radius: 28px;
}

.chicken .shot-card img {
  aspect-ratio: 1 / 1;
}

.chicken .editorial-section {
  grid-template-columns: 1fr;
  padding: clamp(54px, 8vw, 92px);
  background: #1f3428;
  border-radius: 30px;
}

.chicken .editorial-copy {
  position: static;
  max-width: 860px;
}

.chicken .editorial-copy h2,
.chicken .editorial-copy p {
  color: #fff;
}

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

.chicken .editorial-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.chicken .editorial-grid h3,
.chicken .editorial-grid p {
  color: #fff;
}

.chicken .content-section {
  background: #fffdf7;
  color: var(--ink);
  border: 1px solid var(--line);
}

.chicken .content-section h2,
.chicken .content-section h3,
.chicken .content-section p,
.chicken .content-section b {
  color: var(--ink);
}

.chicken .steps article {
  background: #f3f8ea;
  border-color: rgba(31, 52, 40, 0.12);
}

@media (max-width: 980px) {
  .chicken .hero,
  .chicken .feature-grid,
  .chicken .editorial-grid {
    grid-template-columns: 1fr;
  }

  .chicken .feature-card:nth-child(odd) {
    transform: none;
  }
}
