:root {
  --ink: #11110f;
  --coal: #1d1b18;
  --paper: #fffaf0;
  --cream: #f5ead5;
  --river: #0f6f69;
  --leaf: #3f7d32;
  --tomato: #c92f24;
  --mustard: #f3b72a;
  --muted: #68625a;
  --line: rgba(17, 17, 15, 0.14);
  --shadow: 0 24px 70px rgba(24, 19, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--mustard);
  color: var(--ink);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  color: white;
  background: var(--tomato);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(201, 47, 36, 0.14);
}

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

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.6rem);
  font-size: 0.94rem;
}

nav a {
  text-decoration: none;
  color: var(--coal);
}

nav a:hover {
  color: var(--tomato);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lang-toggle,
.call-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  background: white;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
}

.call-chip {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.75fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 5vw, 5rem) 2rem;
  background:
    radial-gradient(circle at 78% 18%, rgba(243, 183, 42, 0.28), transparent 28rem),
    linear-gradient(135deg, #fffaf0 0%, #f3e7ce 52%, #f8f1e4 100%);
}

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

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--river);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  max-width: 11ch;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 650px;
  color: var(--coal);
  font-size: clamp(1.04rem, 2vw, 1.3rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--tomato);
  color: white;
  box-shadow: 0 12px 24px rgba(201, 47, 36, 0.2);
}

.button.secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 2rem 0 0;
}

.quick-facts div,
.feature-card,
.proof-grid article,
.contact-form {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.quick-facts div {
  padding: 1rem;
  border-radius: 8px;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0.3rem 0 0;
  font-weight: 900;
}

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

.hero-media img {
  width: min(100%, 430px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-media figcaption {
  position: absolute;
  left: -1rem;
  bottom: 1.5rem;
  max-width: 280px;
  padding: 0.85rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  font-weight: 800;
}

.status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 5vw, 5rem);
  background: var(--river);
  color: white;
}

.status-strip p {
  margin: 0;
}

.status-strip a {
  min-width: max-content;
  font-weight: 900;
}

.section,
.split-section,
.contact-section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.feature-card {
  min-height: 260px;
  padding: 1.25rem;
  border-radius: 8px;
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 3rem;
  color: var(--tomato);
  font-weight: 950;
}

.feature-card p,
.split-copy p,
.contact-primary p,
.form-note {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  background: #f7f7ef;
}

.split-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.process-list div {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: white;
  background: var(--leaf);
  border-radius: 50%;
  font-weight: 900;
}

.process-list p {
  margin: 0;
}

.review-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
  background: var(--coal);
  color: white;
}

.review-section .eyebrow {
  color: var(--mustard);
}

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

.proof-grid article {
  min-height: 180px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: none;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 1.4rem;
  color: var(--mustard);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.76);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--coal);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
}

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

.gallery-item.wide {
  grid-column: span 2;
}

.menu-shot img {
  object-position: top center;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  background:
    linear-gradient(rgba(17, 17, 15, 0.68), rgba(17, 17, 15, 0.72)),
    url("assets/images/tici-sunset.jpg") center / cover;
  color: white;
}

.contact-primary {
  max-width: 720px;
}

.contact-section .eyebrow {
  color: var(--mustard);
}

.contact-section .button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-color: rgba(255, 255, 255, 0.26);
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-list strong {
  color: var(--mustard);
}

.contact-form {
  padding: 1.2rem;
  align-self: start;
  color: var(--ink);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.96);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.78rem 0.85rem;
  background: white;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
}

.form-note {
  margin: 0.7rem 0 0;
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem clamp(1rem, 5vw, 5rem);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
}

.site-footer p {
  margin: 0;
}

.gallery-dialog {
  width: min(92vw, 920px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.gallery-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.gallery-dialog img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #050505;
}

.gallery-dialog p {
  margin: 0;
  padding: 0.9rem 1rem;
}

.dialog-close {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .hero,
  .split-section,
  .review-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    width: 100%;
    max-height: 560px;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    padding: 0.7rem 1rem;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .call-chip {
    padding-inline: 0.7rem;
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero-actions,
  .contact-actions,
  .status-strip,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .status-strip a {
    width: 100%;
  }

  .quick-facts,
  .offer-grid,
  .proof-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-kicker {
    margin-bottom: 1.5rem;
  }

  .gallery-grid {
    grid-auto-rows: 245px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .hero-media figcaption {
    position: static;
    max-width: none;
    margin-top: 0.75rem;
  }
}
