/* ==========================================================================
   Akela Poultry — visual system
   Direction: a working farm ledger, not a SaaS landing page. Warm khaki
   paper, brick/turmeric ink, torn-photo hero, ticket-notched cards, a
   rotating field-stamp seal. Numbers are typed in mono like a register.
   ========================================================================== */

:root {
  --paper: #efe6d1;
  --paper-deep: #e6d9b8;
  --card: #faf5e6;
  --ink: #241a10;
  --ink-soft: #5c4d3a;
  --ink-faint: #6b5b43;
  --brick: #0e5a3a;
  --brick-deep: #0a4028;
  --turmeric: #c9910f;
  --paddy: #35603f;
  --paddy-deep: #24422b;
  --line: #cdb98c;
  --line-soft: rgba(36, 26, 16, 0.14);
  --white: #fffdf7;
  --dark: #1d140c;
  --dark-card: #2a1e12;
  --shadow-lg: 0 26px 54px rgba(31, 21, 10, 0.22);
  --shadow-md: 0 14px 30px rgba(31, 21, 10, 0.16);
  --shadow-sm: 0 6px 16px rgba(31, 21, 10, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1240px;
  --header-height: 76px;
  --section-space: 60px;
  --mobile-bar-height: 76px;
  --ease: cubic-bezier(0.22, 0.68, 0.32, 1);
  --transition: 220ms var(--ease);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  background-image:
    linear-gradient(rgba(36, 26, 16, 0.035) 1px, transparent 1px);
  background-size: 100% 34px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  animation: page-fade-in 460ms var(--ease) both;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

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

button,
a,
.btn {
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--turmeric);
  outline-offset: 3px;
}

::selection {
  background: var(--turmeric);
  color: var(--dark);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(calc(100% - 24px), var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-sm {
  padding: 40px 0;
}

/* ---- scroll progress ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brick), var(--turmeric));
  z-index: 200;
  transition: width 80ms linear;
}

/* ---- eyebrow / labels ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--brick-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--turmeric);
  flex: 0 0 auto;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  font-size: clamp(34px, 9vw, 44px);
  font-weight: 700;
}

h2 {
  font-size: clamp(25px, 6.6vw, 33px);
}

h3 {
  font-size: clamp(19px, 5vw, 22px);
  font-weight: 600;
}

p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.lead {
  font-size: clamp(17px, 4.4vw, 20px);
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
}

.small {
  font-size: 14px;
}

.page-shell {
  overflow: clip;
  padding-bottom: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom, 0px) + 18px);
}

/* ---- announcement ---- */
.announcement-bar {
  background: var(--dark);
  color: rgba(255, 253, 247, 0.86);
  font-size: 12.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 253, 247, 0.08);
}

.announcement-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 7px 0;
  text-align: center;
}

.announcement-bar .container::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--turmeric);
  flex: 0 0 auto;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ---- header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(14px);
  background: rgba(239, 230, 209, 0.9);
  border-bottom: 1px dashed var(--line);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(31, 21, 10, 0.1);
  background: rgba(239, 230, 209, 0.98);
}

.header-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: var(--header-height);
  padding: 10px 0;
}

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

.brand-logo {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.desktop-nav,
.desktop-actions {
  display: none;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 0;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  display: block;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.mobile-nav-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav ul {
  list-style: none;
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background var(--transition), color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--paper-deep);
  color: var(--brick-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-102%);
  transition: transform 420ms var(--ease);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(0);
}

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

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: var(--brick);
  color: var(--white);
  box-shadow: var(--shadow-sm), inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md), inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: var(--card);
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline {
  background: transparent;
  color: var(--brick-deep);
  border-color: currentColor;
}

/* ---- hero ---- */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 30px 0 20px;
}

.hero-grid,
.split-layout,
.contact-grid,
.cta-band,
.gallery-preview,
.footer-grid,
.testimonial-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.hero-copy {
  order: 1;
  max-width: 640px;
}

.hero-copy .eyebrow {
  margin-bottom: 14px;
}

.hero-copy h1 {
  margin-top: 4px;
}

.hero-copy p {
  color: var(--ink-soft);
}

.cta-row {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.hero-visual {
  order: 2;
  position: relative;
  min-height: 380px;
  margin: 30px 10px 10px;
}

.hero-card {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  padding: 8px 8px 30px;
  border: 1px solid rgba(36, 26, 16, 0.08);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(1.02);
}

.hero-pin {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 26px;
  height: 15px;
  background: rgba(201, 145, 15, 0.55);
  border: 1px solid rgba(201, 145, 15, 0.3);
}

.hero-card.large {
  top: 6px;
  left: 0;
  right: 34%;
  bottom: 96px;
  transform: rotate(-1.5deg);
  z-index: 2;
}

.hero-card.medium {
  width: 128px;
  height: 100px;
  right: 4px;
  top: 0;
  transform: rotate(3deg);
  z-index: 3;
}

.hero-card.small {
  width: 132px;
  height: 104px;
  right: 10%;
  bottom: 4px;
  transform: rotate(-3.5deg);
  z-index: 4;
}

.seal-badge {
  position: absolute;
  left: 2px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  z-index: 5;
  color: var(--brick-deep);
}

.seal-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin-slow 40s linear infinite;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.seal-core {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.seal-core strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--brick);
  line-height: 1.1;
}

.seal-core span {
  display: block;
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ---- section head ---- */
.section-head {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin-bottom: 28px;
}

.stats-grid,
.card-grid,
.gallery-grid,
.value-grid,
.openings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* ---- ticket cards (signature component) ---- */
.stat-card,
.feature-card,
.benefit-card,
.testimonial-card,
.info-card,
.job-card,
.faq-item,
.contact-card {
  position: relative;
  padding: 22px 22px 20px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-top: 3px solid var(--brick);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover,
.benefit-card:hover,
.testimonial-card:hover,
.info-card:hover,
.job-card:hover,
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-card strong {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(28px, 8vw, 36px);
  font-weight: 700;
  color: var(--brick);
  letter-spacing: -0.02em;
}

.stat-card span {
  color: var(--ink-soft);
  font-size: 14px;
}

.about-preview {
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 253, 247, 0.08);
}

.about-preview p,
.about-preview li {
  color: rgba(255, 253, 247, 0.78);
}

.about-preview h2,
.about-preview h3 {
  color: var(--white);
}

.inline-list,
.check-list,
.number-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.inline-list li,
.check-list li,
.number-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.inline-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 1px;
  background: var(--turmeric);
  flex: 0 0 auto;
  transform: rotate(45deg);
}

.check-list li::before,
.number-list li::before {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--brick-deep);
  background: var(--paper-deep);
  border: 1px solid var(--line);
}

.check-list li::before {
  content: "\2713";
}

.number-list li:nth-child(1)::before { content: "1"; }
.number-list li:nth-child(2)::before { content: "2"; }
.number-list li:nth-child(3)::before { content: "3"; }
.number-list li:nth-child(4)::before { content: "4"; }

.media-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-note {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(250, 245, 230, 0.96);
  border-left: 3px solid var(--brick);
  box-shadow: var(--shadow-sm);
}

/* process (real 4-step sequence — kept as a numbered ledger strip) */
.process-card {
  display: grid;
  gap: 14px;
}

.process-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.process-step {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}

.process-step::before {
  content: "No. ";
}

.process-icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
  background: var(--paper-deep);
  color: var(--brick-deep);
  border: 1px solid var(--line);
}

.process-icon svg {
  width: 100%;
  height: 100%;
}

.process-list {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 9px;
}

.process-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

.process-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: 9px;
  border-radius: 1px;
  background: var(--turmeric);
  flex: 0 0 auto;
  transform: rotate(45deg);
}

.quote {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--turmeric);
  opacity: 0.5;
}

.meta {
  color: var(--ink-faint);
  font-size: 13px;
  font-family: var(--font-mono);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 2px solid var(--card);
  outline: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.gallery-preview {
  gap: 14px;
}

.gallery-preview a,
.gallery-grid a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: block;
}

.gallery-preview a::after,
.gallery-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(29, 20, 12, 0.55));
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-preview a:hover::after,
.gallery-grid a:hover::after {
  opacity: 1;
}

.gallery-preview img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.gallery-preview a:hover img,
.gallery-grid a:hover img {
  transform: scale(1.06);
}

.gallery-grid a {
  min-height: 200px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  list-style: none;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--paper-deep);
  color: var(--brick-deep);
  font-family: var(--font-mono);
  transition: transform var(--transition);
}

.faq-icon::before {
  content: "+";
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.cta-band {
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 145, 15, 0.28), transparent 70%);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

/* ---- footer ---- */
.footer {
  padding: 56px 0 24px;
  background: var(--dark);
  color: rgba(255, 253, 247, 0.72);
  border-top: 4px solid var(--brick);
}

.footer-grid {
  gap: 26px;
  margin-bottom: 32px;
}

.footer h3,
.footer h4 {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 11px;
}

.footer a {
  transition: color var(--transition);
}

.footer a:hover {
  color: var(--turmeric);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-row a,
.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 253, 247, 0.06);
  border: 1px solid rgba(255, 253, 247, 0.1);
  transition: background var(--transition), transform var(--transition);
}

.social-row a:hover {
  background: var(--brick);
  transform: translateY(-2px);
}

.social-row svg,
.whatsapp-float svg,
.scroll-top svg,
.mobile-contact-bar svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 253, 247, 0.16);
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-family: var(--font-mono);
}

/* ---- page hero (interior pages) ---- */
.page-hero {
  padding: 30px 0 20px;
}

.page-hero-card {
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brick);
  box-shadow: var(--shadow-md);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--paper-deep);
  color: var(--brick-deep);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid var(--line);
}

.form-card,
.map-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

form {
  display: grid;
  gap: 15px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brick);
  box-shadow: 0 0 0 3px rgba(166, 58, 42, 0.14);
  outline: 0;
}

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

.form-note {
  font-size: 13px;
  color: var(--ink-faint);
}

.form-status {
  font-size: 14px;
  min-height: 20px;
  margin: 4px 0 0;
}

.form-status.is-success {
  color: var(--paddy);
  font-weight: 600;
}

.form-status.is-error {
  color: var(--brick);
  font-weight: 600;
}

.map-frame {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 10px;
}

.contact-list a {
  color: var(--brick-deep);
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 16px;
  background: rgba(29, 20, 12, 0.92);
  z-index: 120;
}

.lightbox.active {
  display: grid;
}

.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 82vh;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 253, 247, 0.24);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.1);
  color: var(--white);
  font-size: 22px;
}

.scroll-top,
.whatsapp-float {
  position: fixed;
  right: 16px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 80;
  transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
}

.scroll-top {
  bottom: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom, 0px) + 14px);
  border: 0;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover,
.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float {
  display: none;
  bottom: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom, 0px) + 80px);
  background: #25d366;
  color: #072915;
}

.mobile-contact-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 85;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 9px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  box-shadow: 0 16px 34px rgba(29, 20, 12, 0.34);
  backdrop-filter: blur(10px);
}

.mobile-contact-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 10px;
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  transition: transform 150ms var(--ease);
}

.mobile-contact-bar a:active {
  transform: scale(0.96);
}

.mobile-contact-bar .mobile-call {
  background: rgba(255, 253, 247, 0.08);
}

.mobile-contact-bar .mobile-whatsapp {
  background: #25d366;
  color: #072915;
}

/* ---- reveal / motion ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
}

.hero-divider {
  width: 132px;
  height: 18px;
  margin: 16px 0 18px;
}

.empty-state {
  text-align: center;
  padding: 70px 24px;
}

@media (min-width: 480px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .cta-row {
    grid-template-columns: repeat(2, minmax(0, auto));
    justify-content: start;
  }

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

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

@media (min-width: 768px) {
  :root {
    --header-height: 80px;
    --section-space: 80px;
  }

  body {
    font-size: 17px;
  }

  .page-shell {
    padding-bottom: 0;
  }

  .announcement-bar {
    font-size: 13px;
  }

  .brand-logo {
    height: 50px;
  }

  .hero {
    padding: 46px 0 30px;
  }

  .hero-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
  }

  .hero-visual {
    min-height: 440px;
    margin: 0 12px;
  }

  .hero-card.large {
    inset: 30px 34% 90px 0;
  }

  .hero-card.medium {
    width: 260px;
    height: 190px;
    right: 6px;
    top: 10px;
  }

  .hero-card.small {
    width: 230px;
    height: 170px;
    right: 8%;
    bottom: 30px;
  }

  .seal-badge {
    width: 140px;
    height: 140px;
    left: -20px;
    bottom: -22px;
  }

  .seal-core strong {
    font-size: 20px;
  }

  .seal-core span {
    font-size: 10px;
  }

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

  .card-grid.four,
  .card-grid.six,
  .value-grid,
  .openings-grid,
  .benefits-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-preview {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

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

  .gallery-grid a:nth-child(4n + 1) {
    grid-row: span 2;
  }

  .gallery-grid a:nth-child(3n + 2) {
    grid-column: span 2;
  }

  .cta-band {
    grid-template-columns: 1.4fr auto;
    align-items: center;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .page-hero {
    padding: 50px 0 30px;
  }

  .page-hero-card,
  .about-preview,
  .form-card,
  .map-card,
  .cta-band,
  .stat-card,
  .feature-card,
  .benefit-card,
  .testimonial-card,
  .info-card,
  .job-card,
  .faq-item,
  .contact-card {
    padding: 28px;
  }

  .media-panel {
    min-height: 400px;
  }

  .map-frame {
    min-height: 340px;
  }

  .mobile-contact-bar {
    display: none;
  }

  .scroll-top {
    bottom: 20px;
  }

  .whatsapp-float {
    display: grid;
    bottom: 86px;
  }
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .feature-card:hover,
  .benefit-card:hover,
  .info-card:hover,
  .job-card:hover {
    transform: translateY(-6px) rotate(-0.3deg);
  }
}

@media (min-width: 1024px) {
  :root {
    --header-height: 84px;
    --section-space: 96px;
  }

  body {
    font-size: 18px;
  }

  .header-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    padding: 0;
  }

  .brand-logo {
    height: 54px;
  }

  .desktop-nav,
  .desktop-actions {
    display: flex;
  }

  .mobile-toggle,
  .mobile-nav-panel {
    display: none;
  }

  .site-nav ul {
    display: flex;
    justify-content: center;
    gap: 22px;
  }

  .site-nav a {
    min-height: 40px;
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    white-space: nowrap;
    background: transparent;
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--brick);
    transition: transform var(--transition);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"] {
    background: transparent;
    color: var(--ink);
  }

  .site-nav a:hover::after,
  .site-nav a:focus-visible::after,
  .site-nav a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .site-header .btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero {
    min-height: calc(100vh - 38px - var(--header-height));
    padding: 60px 0 40px;
  }

  .hero-grid,
  .split-layout {
    gap: 56px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-card.large {
    inset: 46px 42% 130px 20px;
  }

  .hero-card.medium {
    width: 300px;
    height: 220px;
    right: 20px;
    top: 20px;
  }

  .hero-card.small {
    width: 270px;
    height: 200px;
    right: 12%;
    bottom: 50px;
  }

  .seal-badge {
    width: 160px;
    height: 160px;
    left: -10px;
    bottom: -10px;
  }

  .seal-core strong {
    font-size: 22px;
  }

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

  .card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .card-grid.six,
  .value-grid,
  .openings-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  body {
    opacity: 1;
  }
}
