:root {
  --ink: #171411;
  --text: #28231d;
  --muted: #6b6256;
  --paper: #f6f2ec;
  --panel: #fffaf3;
  --charcoal: #111111;
  --steel: #273139;
  --wood: #a66c35;
  --gold: #d7a65f;
  --leaf: #47654b;
  --line: rgba(40, 35, 29, 0.14);
  --shadow: 0 22px 52px rgba(31, 26, 19, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  color: #fff;
  background: rgba(13, 13, 13, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-weight: 800;
  text-decoration: none;
}

.brand img,
.site-footer img {
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links a,
.nav-cta,
.text-link {
  text-decoration: none;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(17, 17, 17, 0.22);
  font-size: 0.84rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.language-switch a {
  text-decoration: none;
}

.language-switch .active {
  color: #fff;
}

.nav-cta {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-weight: 850;
  background: rgba(17, 17, 17, 0.26);
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: end;
  padding: 118px 32px 46px;
  overflow: hidden;
  color: #fff;
  background-image: url("assets/images/gallery/ironwood-bg.png");
  background-size: cover;
  background-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.80) 0%, rgba(9, 9, 9, 0.46) 38%, rgba(9, 9, 9, 0.12) 73%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.18) 0%, rgba(9, 9, 9, 0.18) 54%, rgba(9, 9, 9, 0.70) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.15rem;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

.hero-lede {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #15120f;
  background: linear-gradient(135deg, var(--gold), #efc983);
  box-shadow: 0 16px 34px rgba(215, 166, 95, 0.24);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 990px;
  margin: 52px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-facts div {
  min-height: 116px;
  padding: 22px;
  background: rgba(15, 15, 15, 0.58);
}

.hero-facts dt {
  margin: 0 0 8px;
  color: #fff;
  font-weight: 900;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.section-band {
  background: var(--steel);
  color: #fff;
}

.section-inner {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.section-pad {
  padding: 92px 0;
}

.intro {
  padding: 44px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: 0;
}

.section-band h2 {
  color: #fff;
}

.intro p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.split-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.text-link {
  color: var(--leaf);
  font-weight: 900;
  border-bottom: 2px solid rgba(71, 101, 75, 0.36);
}

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

.service-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(31, 26, 19, 0.06);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--leaf);
  border-radius: 50%;
  font-size: 1.18rem;
  font-weight: 900;
}

.service-card h3,
.process-list h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.service-card p,
.process-list p,
.quote-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.showcase {
  background: #eee6da;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr 0.84fr;
  grid-auto-rows: 245px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #1c1a17;
  box-shadow: var(--shadow);
}

.gallery-large {
  grid-row: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 17, 17, 0.68);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
  backdrop-filter: blur(8px);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 235px;
  padding: 28px;
  border-left: 4px solid var(--wood);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(31, 26, 19, 0.06);
}

.process-list span {
  display: block;
  margin-bottom: 34px;
  color: var(--wood);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
}

.quote-section {
  background: var(--charcoal);
  color: #fff;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 96px;
}

.quote-copy h2 {
  color: #fff;
}

.quote-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.quote-copy a {
  color: #f1c57e;
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-strip a {
  width: max-content;
  max-width: 100%;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 850;
}

.quote-form .full,
.form-button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  outline: none;
}

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

select option {
  color: var(--ink);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215, 166, 95, 0.18);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  line-height: 1.55;
}

.response-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.88), rgba(9, 9, 9, 0.52)),
    url("assets/images/gallery/ironwood-bg.png") center / cover no-repeat;
}

.response-card {
  width: min(100%, 620px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.response-card img {
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border-radius: 50%;
}

.response-card h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.response-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.confirmation-main {
  min-height: 100vh;
  padding: 118px 24px 72px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(215, 166, 95, 0.14), transparent 32%),
    linear-gradient(90deg, rgba(9, 9, 9, 0.90), rgba(9, 9, 9, 0.58)),
    url("assets/images/gallery/ironwood-bg.png") center / cover fixed no-repeat;
}

.confirmation-card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(215, 166, 95, 0.28);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.confirmation-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.confirmation-card h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  line-height: 1.05;
  text-align: center;
  letter-spacing: 0;
}

.confirmation-intro {
  max-width: 610px;
  margin: 16px auto 22px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  text-align: center;
}

.summary-box {
  display: none;
  margin: 0 0 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.07);
  line-height: 1.55;
  white-space: pre-line;
}

.confirmation-note {
  margin: 0 0 18px;
  padding: 15px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  line-height: 1.55;
}

.whatsapp-button {
  width: 100%;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.24);
}

.confirmation-actions {
  display: grid;
  gap: 12px;
}

.confirmation-small {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: center;
}

.site-footer {
  padding: 34px 24px;
  color: rgba(255, 255, 255, 0.78);
  background: #0b0b0b;
}

.footer-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .intro-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-facts div {
    min-height: 102px;
    padding: 18px;
  }

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

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

  .quote-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
    gap: 10px;
    grid-template-columns: auto 1fr;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .language-switch {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .header-actions {
    align-items: flex-end;
    gap: 6px;
    justify-content: flex-end;
  }

  .hero {
    min-height: 92vh;
    padding: 104px 18px 28px;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-lede {
    font-size: 1.06rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-facts {
    margin-top: 34px;
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: auto;
    padding: 15px 16px;
  }

  .hero-facts dd {
    font-size: 0.92rem;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .section-pad {
    padding: 68px 0;
  }

  h2 {
    font-size: 2rem;
  }

  .split-heading {
    display: block;
  }

  .text-link {
    display: inline-block;
    margin-top: 18px;
  }

  .service-grid,
  .process-list,
  .gallery-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

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

  .gallery-large {
    grid-row: span 1;
  }

  .quote-form {
    padding: 18px;
  }

  .confirmation-main {
    padding: 100px 16px 48px;
    background-attachment: scroll;
  }

  .confirmation-card {
    padding: 22px 18px;
  }

  .confirmation-card h1 {
    font-size: 2.25rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding: 10px 12px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .nav-cta {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .language-switch {
    gap: 6px;
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 104px;
  }
}
