:root {
  --charcoal: #2d2321;
  --charcoal-2: #372a27;
  --charcoal-3: #41312d;
  --gold: #c8a172;
  --gold-deep: #b58c5d;
  --gold-soft: rgba(200, 161, 114, 0.16);
  --ivory: #f5f3ee;
  --ivory-deep: #ece7de;
  --ivory-warm: #efe6d8;
  --ivory-shadow: #e3d6c3;
  --text-light: rgba(255, 255, 255, 0.88);
  --text-muted: rgba(255, 255, 255, 0.68);
  --text-dark: #403a37;
  --text-dark-soft: #5f524b;
  --line-light: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(40, 32, 28, 0.12);

  --font-heading: "Playfair Display", serif;
  --font-body: "Lato", sans-serif;
  --font-accent: "Cormorant Garamond", serif;

  --container: 1240px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;

  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.16);
  --shadow-deep: 0 18px 60px rgba(0, 0, 0, 0.28);

  --transition: 0.32s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--charcoal);
  color: #fff;
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

/* ---------- HERO ---------- */

.hero-shell {
  position: relative;
  height: 405px;
  min-height: 405px;
  max-height: 405px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(74, 55, 49, 0.14) 0%,
      rgba(45, 33, 31, 0.10) 100%
    ),
    linear-gradient(
      90deg,
      rgba(65, 46, 40, 0.78) 0%,
      rgba(58, 41, 36, 0.82) 50%,
      rgba(50, 36, 33, 0.86) 100%
    ),
    url("assets/Backgrounds/stone-texture.jpg") center/cover no-repeat;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(200, 161, 114, 0.06), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.03), transparent 20%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.hero-shell-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(45, 33, 31, 0.26) 0%,
      rgba(45, 33, 31, 0.18) 22%,
      rgba(45, 33, 31, 0.10) 42%,
      rgba(45, 33, 31, 0.04) 68%,
      rgba(45, 33, 31, 0) 100%
    );
  pointer-events: none;
}

.hero-header {
  position: relative;
  z-index: 5;
  padding-top: 10px;
}

.hero-header-inner {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-nav-center {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(100%, 690px);
  margin: 0 auto;
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-nav-left {
  justify-content: flex-end;
}

.hero-nav-right {
  justify-content: flex-start;
}

.hero-nav a {
  color: #e1c39a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}

.hero-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.hero-nav a:hover {
  color: #f0d8b0;
}

.hero-nav a:hover::after {
  width: 100%;
}

.hero-brand {
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-brand img {
  max-height: 47px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.06);
}

.hero-top-cta {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #e1c39a;
  border: 1px solid rgba(200, 161, 114, 0.42);
  padding: 9px 16px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.74rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.02);
}

.hero-top-cta:hover {
  background: rgba(200, 161, 114, 0.08);
  border-color: rgba(200, 161, 114, 0.72);
}

.hero-mobile-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero-mobile-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ivory);
  display: block;
  transition: var(--transition);
}

.mobile-hero-nav {
  display: none;
}

.hero-stage {
  position: relative;
  z-index: 4;
  height: calc(405px - 68px);
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  gap: 0;
}

.hero-text-block {
  max-width: 500px;
  align-self: center;
  position: relative;
  z-index: 5;
  margin-top: -4px;
}

.hero-kicker {
  color: rgba(225, 195, 154, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.64rem;
  margin-bottom: 10px;
}

.hero-text-block h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2rem, 2.65vw, 3.12rem);
  line-height: 1.03;
  letter-spacing: 0.005em;
  color: #d6b88c;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.hero-subtext {
  max-width: 460px;
  color: rgba(245, 236, 224, 0.82);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 22px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
}

.hero-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(200, 161, 114, 0.45);
  color: #e1c39a;
  background: rgba(24, 20, 20, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.68rem;
  transition: var(--transition);
}

.hero-outline-btn:hover {
  background: rgba(200, 161, 114, 0.08);
  border-color: rgba(200, 161, 114, 0.72);
  transform: translateY(-1px);
}

.hero-image-side {
  position: relative;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  background: transparent;
}

.hero-figure {
  position: absolute;
  right: -10px;
  bottom: -6px;
  width: 100%;
  height: 100%;
  background: url("assets/Chef/michel-karam-culinary-demonstration.png") no-repeat right bottom / auto 86%;
  filter: saturate(0.82) brightness(0.90) contrast(1.02);
  z-index: 1;
}

.hero-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/Backgrounds/stone-texture.jpg") center/cover no-repeat;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 222, 178, 0.03), transparent 14%);
  pointer-events: none;
}

/* ---------- SHARED SECTION BACKGROUNDS ---------- */

.section-stone,
.site-footer {
  background:
    linear-gradient(
      180deg,
      rgba(74, 55, 49, 0.14) 0%,
      rgba(45, 33, 31, 0.10) 100%
    ),
    linear-gradient(
      90deg,
      rgba(65, 46, 40, 0.78) 0%,
      rgba(58, 41, 36, 0.82) 50%,
      rgba(50, 36, 33, 0.86) 100%
    ),
    url("assets/Backgrounds/stone-texture.jpg") center/cover no-repeat;
  position: relative;
  background-repeat: no-repeat;
}

.section-stone::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(200, 161, 114, 0.06), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.03), transparent 20%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.section-paper {
  position: relative;
  color: var(--charcoal);
  background:
    linear-gradient(
      90deg,
      #f7f2ea 0%,
      #f1e7d9 38%,
      #ece0cf 68%,
      #f6f1e8 100%
    );
}

.section-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.18) 18%, transparent 34%),
    radial-gradient(circle at 78% 68%, rgba(181,140,93,0.10) 0%, rgba(181,140,93,0.03) 20%, transparent 36%),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.22) 0%,
      rgba(255,255,255,0.08) 24%,
      rgba(227,214,195,0.10) 100%
    );
  z-index: 0;
}

.section-paper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(rgba(120, 96, 70, 0.10) 0.55px, transparent 0.7px),
    radial-gradient(rgba(255,255,255,0.22) 0.45px, transparent 0.6px),
    linear-gradient(rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  background-size:
    8px 8px,
    13px 13px,
    100% 100%;
  background-position:
    0 0,
    4px 5px,
    0 0;
  mix-blend-mode: multiply;
}

/* ---------- GENERAL SECTION STYLES ---------- */

.section {
  padding: 110px 0;
  position: relative;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow,
.eyebrow-dark {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
  font-weight: 700;
}

.eyebrow {
  color: var(--gold);
}

.eyebrow-dark {
  color: #8f7440;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.6vw, 3.7rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title-dark {
  color: #5f4a2c;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.section-text-dark {
  color: var(--text-dark);
}

/* ---------- ABOUT PREVIEW ---------- */

.about-preview-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.about-preview-wrap {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 180px;
  align-items: center;
  gap: 28px;
  min-height: 210px;
}

.about-preview-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.portrait-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(181, 140, 93, 0.45);
  box-shadow: 0 8px 24px rgba(77, 55, 47, 0.08);
  background: #d8c6af;
}

.portrait-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview-content {
  max-width: 100%;
}

.about-preview-content .eyebrow {
  display: none;
}

.about-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.08;
  color: #8e6a3f;
  margin-bottom: 14px;
}

.about-copy {
  max-width: 640px;
  color: var(--text-dark-soft);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 8px;
}

.about-preview-bottom {
  margin-top: 18px;
}

.about-preview-accent {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100%;
}

.about-signature-line {
  position: relative;
  width: 130px;
  height: 52px;
}

.about-signature-line::before,
.about-signature-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-bottom: 2px solid rgba(181, 140, 93, 0.7);
  border-radius: 50%;
}

.about-signature-line::before {
  top: 18px;
  transform: rotate(-8deg);
}

.about-signature-line::after {
  top: 26px;
  width: 80%;
  left: 20%;
  transform: rotate(4deg);
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 2px;
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-gold {
  background: transparent;
  border-color: rgba(200, 161, 114, 0.6);
  color: #ecd8ae;
}

.btn-gold:hover {
  background: rgba(200, 161, 114, 0.1);
  transform: translateY(-2px);
}

.btn-dark {
  background: #2e2727;
  color: var(--ivory);
  border-color: #2e2727;
}

.btn-dark:hover {
  background: #3a3232;
}

.btn-light-outline {
  min-height: 36px;
  padding: 0 16px;
  background: transparent;
  color: #8a6a45;
  border-color: rgba(138, 106, 69, 0.4);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.btn-light-outline:hover {
  background: rgba(123, 96, 48, 0.06);
}

/* ---------- SERVICES SHOWCASE ---------- */

.services-showcase {
  padding-top: 38px;
  padding-bottom: 38px;
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 26px;
}

.services-heading h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  color: #d4b184;
  text-align: center;
}

.services-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(200, 161, 114, 0) 0%,
    rgba(200, 161, 114, 0.38) 28%,
    rgba(200, 161, 114, 0.18) 100%
  );
}

.services-heading .services-line:last-child {
  background: linear-gradient(
    90deg,
    rgba(200, 161, 114, 0.18) 0%,
    rgba(200, 161, 114, 0.38) 72%,
    rgba(200, 161, 114, 0) 100%
  );
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
}

.service-showcase-card {
  padding: 18px 24px 12px;
  text-align: center;
  position: relative;
}

.service-showcase-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: calc(100% - 16px);
  background: linear-gradient(
    180deg,
    rgba(200, 161, 114, 0) 0%,
    rgba(200, 161, 114, 0.24) 20%,
    rgba(200, 161, 114, 0.24) 80%,
    rgba(200, 161, 114, 0) 100%
  );
}

.service-showcase-icon {
  font-size: 2rem;
  line-height: 1;
  color: #d8b688;
  margin-bottom: 14px;
  font-family: var(--font-accent);
}

.service-showcase-card h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.2;
  color: #dec094;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.service-showcase-card p {
  max-width: 235px;
  margin: 0 auto;
  color: rgba(245, 236, 224, 0.86);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ---------- HIGHLIGHTS SHOWCASE ---------- */

.highlights-showcase {
  padding-top: 34px;
  padding-bottom: 34px;
}

.highlights-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
}

.highlights-heading h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 2.05rem;
  line-height: 1;
  color: #4e3d34;
  text-align: center;
}

.highlights-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(138, 106, 69, 0) 0%,
    rgba(138, 106, 69, 0.32) 30%,
    rgba(138, 106, 69, 0.14) 100%
  );
}

.highlights-heading .highlights-line:last-child {
  background: linear-gradient(
    90deg,
    rgba(138, 106, 69, 0.14) 0%,
    rgba(138, 106, 69, 0.32) 70%,
    rgba(138, 106, 69, 0) 100%
  );
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.highlight-card {
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 3px 10px rgba(77, 55, 47, 0.06);
  transition: transform 0.28s ease;
}

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

.highlight-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.highlights-cta {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.highlights-cta .btn-dark {
  min-height: 40px;
  padding: 0 34px;
  background: #3a2f2d;
  border-color: #3a2f2d;
  color: #ecd8ae;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.highlights-cta .btn-dark:hover {
  background: #4a3a35;
  border-color: #4a3a35;
}

/* ---------- RECOGNITION SHOWCASE ---------- */

.recognition-showcase {
  padding-top: 30px;
  padding-bottom: 34px;
}

.recognition-showcase-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin: 0 auto 18px;
  text-align: center;
}

.recognition-showcase-heading h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 2.05rem;
  line-height: 1;
  color: #e0c194;
  text-align: center;
}

.recognition-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(200, 161, 114, 0) 0%,
    rgba(200, 161, 114, 0.32) 30%,
    rgba(200, 161, 114, 0.14) 100%
  );
}

.recognition-showcase-heading .recognition-line:last-child {
  background: linear-gradient(
    90deg,
    rgba(200, 161, 114, 0.14) 0%,
    rgba(200, 161, 114, 0.32) 70%,
    rgba(200, 161, 114, 0) 100%
  );
}

.recognition-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}

.recognition-showcase-card {
  position: relative;
  min-height: 190px;
  padding: 26px 24px 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045) 0%,
      rgba(255, 255, 255, 0.015) 100%
    ),
    linear-gradient(
      135deg,
      rgba(200, 161, 114, 0.05) 0%,
      rgba(200, 161, 114, 0.015) 100%
    );
  border: 1px solid rgba(200, 161, 114, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.recognition-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.035), transparent 24%),
    linear-gradient(
      180deg,
      rgba(200,161,114,0.03) 0%,
      rgba(200,161,114,0) 42%
    );
  pointer-events: none;
}

.recognition-label {
  position: relative;
  z-index: 1;
  color: #d4b184;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  margin-bottom: 12px;
}

.recognition-showcase-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.42rem;
  line-height: 1.26;
  color: #ead7b0;
  max-width: 17ch;
  margin-bottom: 20px;
}

.recognition-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  width: fit-content;
  border: 1px solid rgba(200, 161, 114, 0.34);
  color: #ecd8ae;
  background: rgba(24, 20, 20, 0.14);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  transition: var(--transition);
}

.recognition-button:hover {
  background: rgba(200, 161, 114, 0.08);
  border-color: rgba(200, 161, 114, 0.62);
  transform: translateY(-1px);
}

/* ---------- CONTACT MOCKUP BAND ---------- */

.contact-mockup-band {
  padding-top: 0;
  padding-bottom: 0;
  background:
    linear-gradient(
      90deg,
      rgba(247, 242, 234, 0.97) 0%,
      rgba(241, 231, 217, 0.95) 40%,
      rgba(236, 224, 207, 0.95) 68%,
      rgba(246, 241, 232, 0.97) 100%
    );
  position: relative;
}

.contact-mockup-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.42), transparent 24%),
    radial-gradient(circle at 76% 62%, rgba(181,140,93,0.08), transparent 30%),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.14) 0%,
      rgba(227,214,195,0.08) 100%
    );
  pointer-events: none;
}

.contact-mockup-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(rgba(120, 96, 70, 0.10) 0.55px, transparent 0.7px),
    radial-gradient(rgba(255,255,255,0.18) 0.45px, transparent 0.6px);
  background-size: 8px 8px, 13px 13px;
  background-position: 0 0, 4px 5px;
  mix-blend-mode: multiply;
}

.contact-mockup-band .container {
  position: relative;
  z-index: 1;
}

.contact-mockup-panel {
  padding: 26px 0 0;
}

.contact-mockup-top {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid rgba(138, 106, 69, 0.18);
}

.contact-mockup-left {
  padding: 0 34px 22px 0;
  border-right: 1px solid rgba(138, 106, 69, 0.14);
}

.contact-mockup-heading {
  display: grid;
  grid-template-columns: 42px auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-mockup-heading h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 2.05rem;
  line-height: 1;
  color: #7e5d38;
  text-transform: uppercase;
}

.contact-mockup-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(138, 106, 69, 0.48) 0%,
    rgba(138, 106, 69, 0.14) 100%
  );
}

.contact-mockup-line.short {
  width: 42px;
}

.contact-mockup-line.long {
  width: 100%;
}

.contact-mockup-text {
  max-width: 560px;
  color: #544842;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.contact-mockup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 24px;
  border: 1px solid rgba(138, 106, 69, 0.42);
  background: rgba(255, 255, 255, 0.32);
  color: #7d5d39;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  transition: var(--transition);
}

.contact-mockup-button:hover {
  background: rgba(138, 106, 69, 0.06);
  border-color: rgba(138, 106, 69, 0.68);
  transform: translateY(-1px);
}

.contact-mockup-right {
  padding: 0 0 22px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-mockup-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(138, 106, 69, 0.14);
}

.contact-mockup-icon {
  width: 22px;
  text-align: center;
  color: #8b6a43;
  font-size: 1rem;
  line-height: 1;
  flex: 0 0 22px;
}

.contact-mockup-info-row a {
  color: #4c4039;
  font-size: 1.02rem;
  line-height: 1.4;
}

.contact-mockup-socials {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 4px;
}

.contact-mockup-socials a {
  min-width: 68px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7e5d38;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  border-right: 1px solid rgba(138, 106, 69, 0.14);
  transition: var(--transition);
  text-transform: lowercase;
}

.contact-mockup-socials a:first-child {
  border-left: 1px solid rgba(138, 106, 69, 0.14);
}

.contact-mockup-socials a:hover {
  background: rgba(138, 106, 69, 0.05);
}

.contact-mockup-brand {
  text-align: center;
  padding: 16px 0 18px;
  border-top: 1px solid rgba(138, 106, 69, 0.12);
}

.contact-mockup-brand-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 2.55rem;
  line-height: 1;
  color: #7a5935;
  margin-bottom: 8px;
}

.contact-mockup-brand-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: #8f744f;
}

/* ---------- CONTACT LEGACY ---------- */

.section-contact-band {
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-band-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: start;
}

.contact-band-grid-light {
  align-items: center;
}

.contact-band-copy .section-title {
  max-width: 12ch;
}

.contact-band-info-light {
  padding-left: 10px;
}

.contact-info-card {
  padding: 20px 0;
  border-bottom: 1px solid rgba(200, 161, 114, 0.18);
}

.contact-info-card p {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.contact-info-card a {
  color: var(--ivory);
  font-size: 1.08rem;
}

.contact-info-card-light {
  border-bottom: 1px solid rgba(95, 74, 44, 0.14);
}

.contact-info-card-light p {
  color: #8f7440;
}

.contact-info-card-light a {
  color: #403a37;
}

.contact-socials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-socials a {
  color: #e6d4b0;
  border-bottom: 1px solid rgba(230, 212, 176, 0.32);
  padding-bottom: 2px;
}

.contact-socials-light a {
  color: #6f5930;
  border-bottom: 1px solid rgba(111, 89, 48, 0.22);
}

/* ---------- FOOTER ---------- */

.site-footer {
  border-top: 1px solid rgba(200, 161, 114, 0.12);
  padding: 44px 0 30px;
  text-align: center;
}

.footer-inner {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.footer-brand img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #e8d9b5;
}

.footer-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
  margin-top: 8px;
}

/* ---------- REVEAL ---------- */

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.hidden {
  opacity: 0;
  transform: translateY(32px);
}

/* ---------- ABOUT PAGE ---------- */

.hero-nav a[aria-current="page"],
.mobile-hero-nav a[aria-current="page"] {
  color: #f0d8b0;
}

.hero-nav a[aria-current="page"]::after {
  width: 100%;
}

/* HERO + SHARED DARK LANGUAGE */

.about-hero,
.philosophy-section,
.about-closing-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(65, 46, 40, 0.78) 0%,
      rgba(58, 41, 36, 0.82) 50%,
      rgba(50, 36, 33, 0.86) 100%
    ),
    linear-gradient(
      180deg,
      rgba(74, 55, 49, 0.14) 0%,
      rgba(45, 33, 31, 0.10) 100%
    ),
    url("assets/Backgrounds/stone-texture.jpg") center/cover no-repeat;
}

.about-hero {
  padding-top: 10px;
  padding-bottom: 52px;
}

.about-hero::before,
.philosophy-section::before,
.about-closing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(200, 161, 114, 0.06), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.03), transparent 20%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.01) 100%
    );
  mix-blend-mode: screen;
  pointer-events: none;
}

.about-hero .hero-header {
  position: relative;
  z-index: 5;
}

.about-hero-grid,
.philosophy-grid,
.about-closing-grid {
  position: relative;
  z-index: 2;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 42px;
  min-height: 300px;
  padding-top: 18px;
}

.about-hero-text {
  max-width: 620px;
}

.about-hero-text h1,
.philosophy-section .section-title,
.about-closing-section .section-title {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.005em;
  color: #ecd8b5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
}

.about-hero-text h1 {
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 0.98;
  margin-bottom: 18px;
}

.about-hero-description,
.philosophy-section .section-text,
.about-closing-section .section-text {
  color: rgba(248, 238, 226, 0.78);
  font-size: 1rem;
  line-height: 1.9;
}

.about-hero-description {
  max-width: 620px;
  margin-bottom: 24px;
}

.philosophy-section .eyebrow,
.about-closing-section .eyebrow,
.about-hero .hero-kicker {
  color: #d9bc92;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* UNIFIED BUTTONS */

.hero-outline-btn,
.about-closing-section .btn-light-outline,
.about-closing-section .btn-dark {
  min-height: 52px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
  transition: 0.28s ease;
}

/* Hero outline style reused for closing buttons */
.hero-outline-btn,
.about-closing-section .btn-light-outline,
.about-closing-section .btn-dark {
  border: 1px solid rgba(230, 207, 170, 0.34);
  color: #f0dcc0;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.hero-outline-btn:hover,
.about-closing-section .btn-light-outline:hover,
.about-closing-section .btn-dark:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(230, 207, 170, 0.52);
  color: #f4e4c9;
  transform: none;
}

/* Text link button */
.hero-text-link {
  color: #e6cfaa;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  position: relative;
}

.hero-text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(230, 207, 170, 0.46);
}

.about-hero-image {
  display: flex;
  justify-content: flex-end;
}

.about-hero-image img {
  width: 100%;
  max-width: 380px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.32);
}

/* STORY */

.about-story-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.about-story-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 16px 34px rgba(66, 45, 34, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.26) 0%,
    rgba(232, 220, 205, 0.42) 100%
  );
  border: 1px solid rgba(138, 106, 69, 0.16);
}

.about-story-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(181, 140, 93, 0.16);
  border-radius: 28px;
  pointer-events: none;
}

.about-story-image-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-story-content {
  max-width: 760px;
}

.about-story-text {
  color: #554941;
  font-size: 1rem;
  line-height: 1.95;
  margin-bottom: 16px;
}

.about-story-signature {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-story-signature span {
  width: 88px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(138, 106, 69, 0.78) 0%,
    rgba(138, 106, 69, 0.18) 100%
  );
}

.about-story-signature p {
  color: #8c6c44;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

/* PHILOSOPHY */

.philosophy-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 48px;
  align-items: center;
}

.philosophy-copy {
  max-width: 740px;
}

.philosophy-aside {
  display: grid;
  gap: 22px;
}

.philosophy-quote-card {
  position: relative;
  padding: 28px 28px 24px;
  border-radius: 14px;
  border: 1px solid rgba(200, 161, 114, 0.14);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.01) 100%
    ),
    linear-gradient(
      135deg,
      rgba(200, 161, 114, 0.06) 0%,
      rgba(200, 161, 114, 0.015) 100%
    );
  backdrop-filter: blur(2px);
}

.philosophy-quote-mark {
  font-family: var(--font-accent);
  font-size: 4.4rem;
  line-height: 0.7;
  color: rgba(212, 177, 132, 0.42);
  margin-bottom: 10px;
}

.philosophy-quote-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.35;
  color: #ead7b0;
  max-width: 15ch;
}

.philosophy-image-large {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(200, 161, 114, 0.12);
}

.philosophy-image-large img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.92);
}

/* STRENGTHS */

.strengths-section {
  padding-top: 98px;
  padding-bottom: 98px;
}

.strengths-intro {
  max-width: 760px;
  margin-inline: auto;
}

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

.strength-card {
  position: relative;
  min-height: 245px;
  padding: 28px 26px 24px;
  border: 1px solid rgba(138, 106, 69, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.18) 100%
    ),
    linear-gradient(
      135deg,
      rgba(181, 140, 93, 0.05) 0%,
      rgba(181, 140, 93, 0.01) 100%
    );
  box-shadow: 0 8px 22px rgba(77, 55, 47, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(77, 55, 47, 0.09);
  border-color: rgba(138, 106, 69, 0.2);
}

.strength-number {
  display: inline-block;
  color: rgba(138, 106, 69, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  margin-bottom: 16px;
}

.strength-card h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.42rem;
  line-height: 1.22;
  color: #4f3f35;
  margin-bottom: 12px;
}

.strength-card p {
  color: #61554d;
  font-size: 0.96rem;
  line-height: 1.78;
}

/* CLOSING */

.about-closing-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.about-closing-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.about-closing-image {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(200, 161, 114, 0.14);
}

.about-closing-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.94);
}

.about-closing-copy {
  max-width: 620px;
}

.about-closing-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* QUOTE BAND */

.quote-band {
  padding-top: 88px;
  padding-bottom: 88px;
}

.quote-band-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.quote-band-inner .eyebrow {
  margin-bottom: 18px;
}

.quote-band-text {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #4f3f35;
  text-wrap: balance;
}

.quote-band-signature {
  margin-top: 20px;
  color: #8c6c44;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1260px) {
  .hero-nav-center {
    width: min(100%, 650px);
    gap: 22px;
  }

  .hero-nav a {
    font-size: 0.72rem;
  }

  .hero-nav {
    gap: 16px;
  }

  .hero-top-cta {
    padding: 9px 14px;
    font-size: 0.7rem;
  }
}

@media (max-width: 1180px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
  }

  .about-story-grid,
  .philosophy-grid,
  .about-closing-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-top-cta {
    display: none;
  }

  .hero-shell {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .hero-stage,
  .contact-band-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .about-preview-wrap {
    grid-template-columns: 170px 1fr;
    gap: 24px;
  }

  .about-preview-accent {
    display: none;
  }

  .services-showcase-grid,
  .recognition-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .highlight-card img {
    height: 150px;
  }

  .service-showcase-card:nth-child(2)::after {
    display: none;
  }

  .hero-text-block {
    padding: 28px 0 10px;
    max-width: 100%;
  }

  .hero-image-side {
    min-height: 280px;
    height: 280px;
  }

  .hero-figure {
    right: -10px;
    bottom: 0;
  }
}

@media (max-width: 860px) {
  .about-hero {
    padding-bottom: 42px;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding-top: 10px;
  }

  .about-hero-text {
    max-width: 100%;
  }

  .about-hero-text h1 {
    font-size: 2.5rem;
  }

  .about-hero-description {
    max-width: 100%;
    font-size: 0.98rem;
  }

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

  .hero-text-link {
    width: fit-content;
  }

  .about-hero-image {
    justify-content: center;
  }

  .about-hero-image img {
    max-width: 100%;
    height: 280px;
  }

  .about-story-grid,
  .philosophy-grid,
  .about-closing-grid,
  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .about-story-image-frame img,
  .philosophy-image-large img,
  .about-closing-image img {
    height: 420px;
  }

  .philosophy-quote-text {
    max-width: 100%;
    font-size: 1.32rem;
  }

  .hero-nav-center {
    grid-template-columns: auto;
    justify-content: center;
    width: auto;
  }

  .hero-nav {
    display: none;
  }

  .hero-brand {
    justify-self: center;
  }

  .hero-mobile-toggle {
    display: flex;
  }

  .mobile-hero-nav {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
    padding: 20px;
    background:
      linear-gradient(rgba(24, 22, 22, 0.96), rgba(24, 22, 22, 0.96)),
      url("assets/Backgrounds/stone-texture.jpg") center/cover no-repeat;
    border: 1px solid rgba(200, 161, 114, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--transition);
  }

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

  .mobile-hero-nav a {
    color: #e6d7b9;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.92rem;
  }

  .portfolio-grid.three-up,
  .services-showcase-grid,
  .recognition-showcase-grid,
  .highlights-grid,
  .about-preview-wrap {
    grid-template-columns: 1fr;
  }

  .about-preview-section,
  .highlights-showcase,
  .recognition-showcase {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .about-preview-image {
    justify-content: center;
  }

  .about-preview-content {
    text-align: center;
  }

  .about-copy {
    max-width: 100%;
  }

  .about-preview-bottom {
    display: flex;
    justify-content: center;
  }

  .service-showcase-card:not(:last-child)::after {
    display: none;
  }

  .highlight-card img {
    height: 220px;
  }

  .highlights-heading,
  .services-heading,
  .recognition-showcase-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .highlights-line,
  .services-line,
  .recognition-line {
    display: none;
  }

  .highlights-heading h2,
  .services-heading h2,
  .recognition-showcase-heading h2 {
    font-size: 1.75rem;
  }

  .recognition-showcase-card h3 {
    max-width: 100%;
    font-size: 1.8rem;
  }

  .contact-mockup-top {
    grid-template-columns: 1fr;
  }

  .contact-mockup-left {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(138, 106, 69, 0.14);
  }

  .contact-mockup-right {
    padding: 20px 0 18px;
  }

  .contact-mockup-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-mockup-line {
    display: none;
  }

  .contact-mockup-heading h2 {
    font-size: 1.8rem;
  }

  .contact-mockup-brand-title {
    font-size: 2.1rem;
  }

  .hero-shell {
    height: auto;
    min-height: auto;
  }

  .hero-stage {
    gap: 18px;
    padding-bottom: 20px;
  }

  .hero-text-block h1 {
    font-size: 2.3rem;
  }

  .hero-image-side {
    height: 240px;
    min-height: 240px;
  }

  .section {
    padding: 84px 0;
  }

  .quote-band {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .quote-band-text {
    font-size: 1.8rem;
    line-height: 1.28;
  }
}

@media (max-width: 560px) {
  .about-hero {
    padding-bottom: 34px;
  }

  .about-hero-text h1 {
    font-size: 2rem;
  }

  .about-hero-description {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .about-story-section,
  .strengths-section,
  .about-closing-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .about-story-image-frame,
  .about-closing-image,
  .philosophy-image-large {
    border-radius: 20px;
  }

  .about-story-image-frame img,
  .philosophy-image-large img,
  .about-closing-image img {
    height: 340px;
  }

  .about-story-text,
  .strength-card p {
    font-size: 0.93rem;
  }

  .strength-card,
  .philosophy-quote-card {
    padding: 22px 20px;
  }

  .strength-card h3 {
    font-size: 1.28rem;
  }

  .philosophy-quote-text {
    font-size: 1.18rem;
  }

  .about-closing-actions .btn,
  .about-closing-actions .btn-light-outline,
  .about-hero-actions .hero-outline-btn {
    width: 100%;
  }

  .hero-text-link {
    width: fit-content;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero-header {
    padding-top: 10px;
  }

  .hero-header-inner {
    min-height: 72px;
  }

  .hero-brand {
    width: 64px;
  }

  .hero-brand img {
    max-height: 42px;
  }

  .hero-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .hero-text-block h1 {
    font-size: 1.95rem;
    margin-bottom: 20px;
  }

  .hero-outline-btn {
    width: 100%;
  }

  .portrait-circle {
    width: 136px;
    height: 136px;
  }

  .about-title {
    font-size: 1.55rem;
  }

  .about-copy {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .services-heading,
  .highlights-heading,
  .recognition-showcase-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .services-line,
  .highlights-line,
  .recognition-line {
    display: none;
  }

  .services-heading h2,
  .highlights-heading h2,
  .recognition-showcase-heading h2 {
    font-size: 1.65rem;
  }

  .highlight-card img {
    height: 180px;
  }

  .recognition-showcase-card {
    padding: 28px 24px 24px;
  }

  .recognition-showcase-card h3 {
    font-size: 1.55rem;
  }

  .contact-mockup-band {
    padding-top: 0;
    padding-bottom: 0;
  }

  .contact-mockup-panel {
    padding-top: 20px;
  }

  .contact-mockup-heading h2 {
    font-size: 1.55rem;
  }

  .contact-mockup-text {
    font-size: 0.94rem;
  }

  .contact-mockup-info-row a {
    font-size: 0.96rem;
  }

  .contact-mockup-socials a {
    min-width: 58px;
    font-size: 1.35rem;
  }

  .contact-mockup-brand-title {
    font-size: 1.8rem;
  }

  .contact-mockup-brand-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .hero-image-side {
    height: 210px;
    min-height: 210px;
  }

  .portfolio-card img {
    height: 300px;
  }

  .portfolio-card {
    min-height: 300px;
  }

  .footer-brand img {
    max-height: 110px;
  }

  .footer-title {
    font-size: 2.2rem;
  }

  .quote-band {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .quote-band-text {
    font-size: 1.45rem;
    line-height: 1.34;
  }

  .quote-band-signature {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }
}

/* =========================================================
   SERVICES PAGE
========================================================= */

.hero-nav a[aria-current="page"],
.mobile-hero-nav a[aria-current="page"] {
  color: #f0d8b0;
}

.hero-nav a[aria-current="page"]::after {
  width: 100%;
}

/* ---------------------------------------------------------
   SERVICES HERO
--------------------------------------------------------- */

.services-hero {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(65, 46, 40, 0.78) 0%,
      rgba(58, 41, 36, 0.82) 50%,
      rgba(50, 36, 33, 0.86) 100%
    ),
    linear-gradient(
      180deg,
      rgba(74, 55, 49, 0.14) 0%,
      rgba(45, 33, 31, 0.10) 100%
    ),
    url("assets/Backgrounds/stone-texture.jpg") center/cover no-repeat;

  padding-top: 8px;
  padding-bottom: 46px;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 16% 18%, rgba(200, 161, 114, 0.06), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.03), transparent 20%);

  mix-blend-mode: screen;
  pointer-events: none;
}

.services-hero-grid {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: minmax(0,1fr) 360px;
  gap: 42px;
  align-items: center;

  min-height: 270px;
  padding-top: 14px;
}

.services-hero-text {
  max-width: 600px;
}

.services-hero-text h1 {
  font-family: var(--font-heading);
  font-weight: 500;

  font-size: clamp(2.25rem,3.7vw,3.65rem);
  line-height: 0.98;

  color: #d6b88c;

  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.services-hero-description {
  max-width: 560px;

  color: rgba(255,255,255,0.84);
  font-size: 1rem;
  line-height: 1.84;

  margin-bottom: 18px;
}

.services-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-text-link {
  color: #e6cfaa;

  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;

  position: relative;
}

.hero-text-link::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -6px;

  width: 100%;
  height: 1px;

  background: rgba(230,207,170,0.46);
}

.services-hero-image img {
  width: 100%;
  max-width: 360px;

  height: 260px;
  object-fit: cover;

  border-radius: 12px;

  border: 1px solid rgba(212,175,55,0.22);
  box-shadow: 0 14px 34px rgba(0,0,0,0.30);
}

/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.services-intro-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 320px;
  gap: 48px;
  align-items: center;
}

.services-intro-copy {
  max-width: 760px;
}

.services-intro-note {
  padding: 26px 24px;

  border: 1px solid rgba(138,106,69,0.12);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.48) 0%,
      rgba(255,255,255,0.20) 100%
    );

  box-shadow: 0 8px 20px rgba(77,55,47,0.04);
}

.services-note-line {
  width: 76px;
  height: 1px;

  margin-bottom: 16px;

  background:
    linear-gradient(
      90deg,
      rgba(138,106,69,0.8) 0%,
      rgba(138,106,69,0.16) 100%
    );
}

.services-intro-note p {
  color: #5b4b41;
  line-height: 1.82;
}

/* ---------------------------------------------------------
   SERVICES GRID
--------------------------------------------------------- */

/* SERVICES GRID */

.services-grid-section {
  overflow: hidden;
}

.services-grid-section .eyebrow,
.section-stone.services-grid-section .eyebrow {
  color: rgba(214, 184, 140, 0.88);
}

.services-grid-section .section-title,
.section-stone.services-grid-section .section-title {
  color: #ead7b7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.services-grid-section .section-text,
.section-stone.services-grid-section .section-text {
  color: rgba(240, 226, 208, 0.72);
}

.services-grid-intro {
  max-width: 760px;
  margin-inline: auto;
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 272px;
  padding: 30px 26px 24px;
  border: 1px solid rgba(200, 161, 114, 0.16);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.015) 100%
    ),
    linear-gradient(
      135deg,
      rgba(200, 161, 114, 0.06) 0%,
      rgba(200, 161, 114, 0.015) 100%
    );
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 177, 132, 0.32);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.service-card-number {
  display: inline-block;
  color: rgba(212, 177, 132, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.42rem;
  font-weight: 500;
  color: #ecd8ae;
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.8;
}
/* ---------------------------------------------------------
   PROCESS
--------------------------------------------------------- */

.services-process-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.process-step {
  padding: 28px 24px 22px;

  border-top: 1px solid rgba(138,106,69,0.26);
}

.process-step-number {
  display: inline-block;

  color: rgba(138,106,69,0.55);

  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;

  margin-bottom: 14px;
}

.process-step h3 {
  font-family: var(--font-heading);

  font-weight: 500;
  font-size: 1.36rem;

  color: #4f3f35;

  margin-bottom: 10px;
}

.process-step p {
  color: #61554d;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   QUOTE BAND
--------------------------------------------------------- */

.services-quote-band {
  padding-top: 74px;
  padding-bottom: 74px;
}

.services-quote-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.services-quote-eyebrow {
  color: rgba(212,177,132,0.75);

  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;

  margin-bottom: 18px;
}

.services-quote-lines {
  display: flex;
  justify-content: center;
  gap: 14px;

  margin-bottom: 24px;
}

.services-quote-lines span {
  width: 72px;
  height: 1px;

  background: linear-gradient(
    90deg,
    rgba(212,177,132,0.18) 0%,
    rgba(212,177,132,0.7) 50%,
    rgba(212,177,132,0.18) 100%
  );
}

.services-quote-text {
  font-family: var(--font-heading);

  font-weight: 500;

  font-size: clamp(1.9rem,3vw,2.7rem);
  line-height: 1.24;

  color: #ead7b0;

  max-width: 21ch;
  margin: 0 auto;
}

/* ---------------------------------------------------------
   AUDIENCE
--------------------------------------------------------- */

.services-audience-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.services-audience-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.services-audience-image {
  overflow: hidden;
  border-radius: 26px;

  box-shadow: 0 14px 34px rgba(66,45,34,0.12);
}

.services-audience-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.services-audience-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.services-audience-item {
  display: grid;
  grid-template-columns: 14px minmax(0,1fr);
  gap: 14px;
}

.services-audience-item span {
  width: 8px;
  height: 8px;

  margin-top: 9px;

  border-radius: 50%;
  background: #b88e52;
}

.services-audience-item p {
  color: #5a4a40;
  line-height: 1.85;
}

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width:1180px){

.services-hero-grid,
.services-intro-grid,
.services-audience-grid{
grid-template-columns:1fr;
}

.services-card-grid{
grid-template-columns:repeat(2,1fr);
}

.services-process-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:900px){

.services-card-grid,
.services-process-grid,
.services-audience-grid{
grid-template-columns:1fr;
}

.services-audience-image img{
height:420px;
}

}

@media (max-width:560px){

.services-hero-text h1{
font-size:2rem;
}

.services-intro-section,
.services-process-section,
.services-audience-section,
.services-quote-band{
padding-top:74px;
padding-bottom:74px;
}

.service-card,
.process-step{
padding:22px 20px;
}

.services-audience-image img{
height:340px;
}

}

/* =========================================================
   PORTFOLIO PAGE
========================================================= */

.hero-nav a[aria-current="page"],
.mobile-hero-nav a[aria-current="page"] {
  color: #f0d8b0;
}

.hero-nav a[aria-current="page"]::after {
  width: 100%;
}

/* PORTFOLIO HERO */

.portfolio-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(65, 46, 40, 0.78) 0%,
      rgba(58, 41, 36, 0.82) 50%,
      rgba(50, 36, 33, 0.86) 100%
    ),
    linear-gradient(
      180deg,
      rgba(74, 55, 49, 0.14) 0%,
      rgba(45, 33, 31, 0.10) 100%
    ),
    url("assets/Backgrounds/stone-texture.jpg") center/cover no-repeat;
  padding-top: 8px;
  padding-bottom: 40px;
}

.portfolio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(200, 161, 114, 0.06), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.03), transparent 20%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.01) 100%
    );
  mix-blend-mode: screen;
  pointer-events: none;
}

.portfolio-hero .hero-header {
  position: relative;
  z-index: 5;
}

.portfolio-hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 36px;
  min-height: 240px;
  padding-top: 10px;
}

.portfolio-hero-text {
  max-width: 560px;
}

.portfolio-hero-text h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.05rem, 3.2vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  color: #d6b88c;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.portfolio-hero-description {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.76;
  margin-bottom: 16px;
}

.portfolio-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.portfolio-hero-image {
  display: flex;
  justify-content: flex-end;
}

.portfolio-hero-image img {
  width: 100%;
  max-width: 340px;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

/* INTRO */

.portfolio-intro-section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.portfolio-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 40px;
  align-items: start;
}

.portfolio-intro-copy {
  max-width: 720px;
}

.portfolio-intro-aside {
  display: flex;
  justify-content: flex-end;
}

.portfolio-category-nav {
  width: 100%;
  max-width: 270px;
  display: grid;
  gap: 10px;
}

.portfolio-category-nav a {
  display: block;
  padding: 11px 14px;
  border: 1px solid rgba(138, 106, 69, 0.12);
  color: #5c4d43;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.50) 0%,
    rgba(255, 255, 255, 0.20) 100%
  );
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-category-nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(138, 106, 69, 0.24);
  box-shadow: 0 8px 18px rgba(77, 55, 47, 0.04);
}

/* CATEGORY SECTIONS */

.portfolio-category-section {
  padding-top: 74px;
  padding-bottom: 74px;
}

.portfolio-section-heading {
  margin-bottom: 24px;
}

.portfolio-section-heading.center {
  text-align: center;
}

.portfolio-section-intro {
  max-width: 620px;
  font-size: 0.94rem;
  line-height: 1.78;
}

.portfolio-section-heading.center .portfolio-section-intro {
  margin-inline: auto;
}

/* DARK SECTION TEXT OVERRIDES */

.section-stone.portfolio-category-section .eyebrow {
  color: rgba(214, 184, 140, 0.86);
}

.section-stone.portfolio-category-section .section-title {
  color: #ead7b7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.section-stone.portfolio-category-section .section-text {
  color: rgba(240, 226, 208, 0.72);
}

/* GRIDS */

.portfolio-grid {
  display: grid;
  gap: 16px;
}

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

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

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(56, 40, 35, 0.07);
  background: rgba(255, 255, 255, 0.25);
}

.dark-grid .portfolio-card {
  border: 1px solid rgba(200, 161, 114, 0.10);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.42s ease;
}

.portfolio-card:hover img {
  transform: scale(1.02);
}

/* Slightly wider first section rhythm */
#signature-dishes .portfolio-grid-four {
  grid-template-columns: repeat(5, 1fr);
}

#signature-dishes .portfolio-card:first-child {
  grid-column: span 2;
}

#signature-dishes .portfolio-card:first-child img {
  min-height: 240px;
  max-height: 240px;
}

/* Meat and live stations can stay a bit cleaner */
#meat .portfolio-grid-four,
#live-stations .portfolio-grid-four {
  grid-template-columns: repeat(4, 1fr);
}
/* PORTFOLIO QUOTE SECTION */

.portfolio-quote-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.portfolio-quote-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-quote-text-dark {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.35;
  color: #3b2d27;
  margin-top: 12px;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .portfolio-hero-grid,
  .portfolio-intro-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-hero-image,
  .portfolio-intro-aside {
    justify-content: flex-start;
  }

  .portfolio-grid-three,
  .portfolio-grid-four,
  #signature-dishes .portfolio-grid-four,
  #meat .portfolio-grid-four,
  #live-stations .portfolio-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  #signature-dishes .portfolio-card:first-child {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .portfolio-hero {
    padding-top: 8px;
    padding-bottom: 32px;
  }

  .portfolio-hero-grid {
    gap: 22px;
    min-height: auto;
    padding-top: 8px;
  }

  .portfolio-hero-image {
    justify-content: center;
  }

  .portfolio-hero-image img {
    max-width: 100%;
    height: 220px;
  }

  .portfolio-grid-three,
  .portfolio-grid-four,
  #signature-dishes .portfolio-grid-four,
  #meat .portfolio-grid-four,
  #live-stations .portfolio-grid-four {
    grid-template-columns: 1fr;
  }

  .portfolio-card img,
  #signature-dishes .portfolio-card:first-child img {
    min-height: 220px;
    max-height: 260px;
  }
}

@media (max-width: 560px) {
  .portfolio-hero-text h1 {
    font-size: 2rem;
  }

  .portfolio-hero-description {
    font-size: 0.93rem;
    line-height: 1.78;
  }

  .portfolio-intro-section,
  .portfolio-category-section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .portfolio-card {
    border-radius: 12px;
  }

  .portfolio-card img,
  #signature-dishes .portfolio-card:first-child img {
    min-height: 210px;
    max-height: 240px;
  }
}
/* =========================================================
   AWARDS PAGE
========================================================= */

.hero-nav a[aria-current="page"],
.mobile-hero-nav a[aria-current="page"] {
  color: #f0d8b0;
}

.hero-nav a[aria-current="page"]::after {
  width: 100%;
}

/* AWARDS HERO */

.awards-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(65, 46, 40, 0.78) 0%,
      rgba(58, 41, 36, 0.82) 50%,
      rgba(50, 36, 33, 0.86) 100%
    ),
    linear-gradient(
      180deg,
      rgba(74, 55, 49, 0.14) 0%,
      rgba(45, 33, 31, 0.10) 100%
    ),
    url("assets/Backgrounds/stone-texture.jpg") center/cover no-repeat;
  padding-top: 8px;
  padding-bottom: 40px;
}

.awards-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(200, 161, 114, 0.06), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.03), transparent 20%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.01) 100%
    );
  mix-blend-mode: screen;
  pointer-events: none;
}

.awards-hero .hero-header {
  position: relative;
  z-index: 5;
}

.awards-hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 36px;
  min-height: 240px;
  padding-top: 10px;
}

.awards-hero-text {
  max-width: 560px;
}

.awards-hero-text h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.05rem, 3.2vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  color: #d6b88c;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.awards-hero-description {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.76;
  margin-bottom: 16px;
}

.awards-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.awards-hero-image {
  display: flex;
  justify-content: flex-end;
}

.awards-hero-image img {
  width: 100%;
  max-width: 340px;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

/* INTRO */

.awards-intro-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.awards-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 40px;
  align-items: start;
}

.awards-intro-copy {
  max-width: 720px;
}

.awards-intro-aside {
  display: flex;
  justify-content: flex-end;
}

.awards-intro-note {
  width: 100%;
  max-width: 270px;
  padding: 24px 22px;
  border: 1px solid rgba(138, 106, 69, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.48) 0%,
      rgba(255, 255, 255, 0.20) 100%
    ),
    linear-gradient(
      135deg,
      rgba(181, 140, 93, 0.04) 0%,
      rgba(181, 140, 93, 0.01) 100%
    );
  box-shadow: 0 8px 18px rgba(77, 55, 47, 0.04);
}

.awards-note-line {
  display: block;
  width: 76px;
  height: 1px;
  margin-bottom: 16px;
  background:
    linear-gradient(
      90deg,
      rgba(138, 106, 69, 0.8) 0%,
      rgba(138, 106, 69, 0.16) 100%
    );
}

.awards-intro-note p {
  color: #5b4b41;
  line-height: 1.8;
  font-size: 0.96rem;
}

/* FEATURED RECOGNITION */

.awards-feature-section {
  padding-top: 72px;
  padding-bottom: 72px;
  overflow: hidden;
}

.awards-feature-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.awards-feature-image {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(200, 161, 114, 0.10);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.awards-feature-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* DARK SECTION TEXT */

.section-stone.awards-feature-section .eyebrow,
.section-stone.awards-values-section .eyebrow {
  color: rgba(214, 184, 140, 0.84);
}

.section-stone.awards-feature-section .section-title,
.section-stone.awards-values-section .section-title {
  color: #ead7b7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.section-stone.awards-feature-section .section-text,
.section-stone.awards-values-section .section-text {
  color: rgba(240, 226, 208, 0.70);
}

/* GALLERY */

.awards-gallery-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.awards-gallery-intro {
  max-width: 680px;
  margin-inline: auto;
}

.awards-gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.awards-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(56, 40, 35, 0.07);
  background: rgba(255, 255, 255, 0.25);
}

.awards-card-large {
  grid-row: span 2;
}

.awards-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  max-height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.42s ease;
}

.awards-card-large img {
  min-height: 436px;
  max-height: 436px;
}

.awards-card:hover img {
  transform: scale(1.02);
}

/* SELECTED HONORS */

.awards-values-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.awards-values-intro {
  max-width: 680px;
  margin-inline: auto;
}

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

.awards-value-card {
  position: relative;
  min-height: 200px;
  padding: 24px 22px 20px;
  border: 1px solid rgba(200, 161, 114, 0.14);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.015) 100%
    ),
    linear-gradient(
      135deg,
      rgba(200, 161, 114, 0.06) 0%,
      rgba(200, 161, 114, 0.015) 100%
    );
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
}

.awards-value-number {
  display: inline-block;
  color: rgba(212, 177, 132, 0.56);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  margin-bottom: 12px;
}

.awards-value-card h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.26rem;
  line-height: 1.2;
  color: #ecd8ae;
  margin-bottom: 10px;
}

.awards-value-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.72;
}

/* CLOSING QUOTE */

.awards-quote-section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.awards-quote-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.awards-quote-text-dark {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1.34;
  color: #3b2d27;
  margin: 12px auto 0;
}

@media (max-width: 560px) {
  .awards-quote-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .awards-quote-text-dark {
    font-size: 1.4rem;
    max-width: 100%;
  }
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .awards-hero-grid,
  .awards-intro-grid,
  .awards-feature-grid,
  .awards-values-grid {
    grid-template-columns: 1fr;
  }

  .awards-hero-image,
  .awards-intro-aside {
    justify-content: flex-start;
  }

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

  .awards-card-large {
    grid-row: span 1;
  }

  .awards-card-large img {
    min-height: 240px;
    max-height: 280px;
  }
}

@media (max-width: 900px) {
  .awards-hero {
    padding-top: 8px;
    padding-bottom: 32px;
  }

  .awards-hero-grid {
    gap: 22px;
    min-height: auto;
    padding-top: 8px;
  }

  .awards-hero-image {
    justify-content: center;
  }

  .awards-hero-image img {
    max-width: 100%;
    height: 220px;
  }

  .awards-gallery-grid,
  .awards-values-grid {
    grid-template-columns: 1fr;
  }

  .awards-feature-image img {
    height: 260px;
  }

  .awards-card img,
  .awards-card-large img {
    min-height: 220px;
    max-height: 250px;
  }
}

@media (max-width: 560px) {
  .awards-hero-text h1 {
    font-size: 2rem;
  }

  .awards-hero-description {
    font-size: 0.93rem;
    line-height: 1.78;
  }

  .awards-intro-section,
  .awards-gallery-section,
  .awards-values-section,
  .awards-quote-section,
  .awards-feature-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .awards-card,
  .awards-feature-image {
    border-radius: 12px;
  }

  .awards-card img,
  .awards-card-large img {
    min-height: 210px;
    max-height: 235px;
  }

  .awards-value-card {
    padding: 22px 20px;
  }

  .awards-value-card h3 {
    font-size: 1.2rem;
  }

  .awards-value-card p {
    font-size: 0.92rem;
  }

  .awards-quote-text-dark {
    font-size: 1.4rem;
    max-width: 100%;
  }
}
/* =========================================================
   PRESS PAGE
========================================================= */

.hero-nav a[aria-current="page"],
.mobile-hero-nav a[aria-current="page"] {
  color: #f0d8b0;
}

.hero-nav a[aria-current="page"]::after {
  width: 100%;
}

/* PRESS HERO */

.press-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(65, 46, 40, 0.78) 0%,
      rgba(58, 41, 36, 0.82) 50%,
      rgba(50, 36, 33, 0.86) 100%
    ),
    linear-gradient(
      180deg,
      rgba(74, 55, 49, 0.14) 0%,
      rgba(45, 33, 31, 0.10) 100%
    ),
    url("assets/Backgrounds/stone-texture.jpg") center/cover no-repeat;
  padding-top: 8px;
  padding-bottom: 40px;
}

.press-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(200, 161, 114, 0.06), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.03), transparent 20%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.01) 100%
    );
  mix-blend-mode: screen;
  pointer-events: none;
}

.press-hero .hero-header {
  position: relative;
  z-index: 5;
}

.press-hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 36px;
  min-height: 240px;
  padding-top: 10px;
}

.press-hero-text {
  max-width: 560px;
}

.press-hero-text h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.05rem, 3.2vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  color: #d6b88c;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.press-hero-description {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.76;
  margin-bottom: 16px;
}

.press-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.press-hero-image {
  display: flex;
  justify-content: flex-end;
}

.press-hero-image img {
  width: 100%;
  max-width: 340px;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

/* INTRO */

.press-intro-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.press-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 40px;
  align-items: start;
}

.press-intro-copy {
  max-width: 720px;
}

.press-intro-aside {
  display: flex;
  justify-content: flex-end;
}

.press-intro-note {
  width: 100%;
  max-width: 270px;
  padding: 24px 22px;
  border: 1px solid rgba(138, 106, 69, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.48) 0%,
      rgba(255, 255, 255, 0.20) 100%
    ),
    linear-gradient(
      135deg,
      rgba(181, 140, 93, 0.04) 0%,
      rgba(181, 140, 93, 0.01) 100%
    );
  box-shadow: 0 8px 18px rgba(77, 55, 47, 0.04);
}

.press-note-line {
  display: block;
  width: 76px;
  height: 1px;
  margin-bottom: 16px;
  background:
    linear-gradient(
      90deg,
      rgba(138, 106, 69, 0.8) 0%,
      rgba(138, 106, 69, 0.16) 100%
    );
}

.press-intro-note p {
  color: #5b4b41;
  line-height: 1.8;
  font-size: 0.96rem;
}

/* FEATURED PRESS */

.press-feature-section {
  padding-top: 72px;
  padding-bottom: 72px;
  overflow: hidden;
}

.press-feature-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.press-feature-image {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(200, 161, 114, 0.10);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.press-feature-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* DARK SECTION TEXT */

.section-stone.press-feature-section .eyebrow,
.section-stone.press-values-section .eyebrow {
  color: rgba(214, 184, 140, 0.84);
}

.section-stone.press-feature-section .section-title,
.section-stone.press-values-section .section-title {
  color: #ead7b7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.section-stone.press-feature-section .section-text,
.section-stone.press-values-section .section-text {
  color: rgba(240, 226, 208, 0.70);
}

/* GALLERY */

.press-gallery-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.press-gallery-intro {
  max-width: 680px;
  margin-inline: auto;
}

.press-gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.press-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(56, 40, 35, 0.07);
  background: rgba(255, 255, 255, 0.25);
}

.press-card-large {
  grid-row: span 2;
}

.press-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  max-height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.42s ease;
}

.press-card-large img {
  min-height: 436px;
  max-height: 436px;
}

.press-card:hover img {
  transform: scale(1.02);
}

/* SELECTED COVERAGE */

.press-values-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.press-values-intro {
  max-width: 680px;
  margin-inline: auto;
}

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

.press-value-card {
  position: relative;
  min-height: 200px;
  padding: 24px 22px 20px;
  border: 1px solid rgba(200, 161, 114, 0.14);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.015) 100%
    ),
    linear-gradient(
      135deg,
      rgba(200, 161, 114, 0.06) 0%,
      rgba(200, 161, 114, 0.015) 100%
    );
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
}

.press-value-number {
  display: inline-block;
  color: rgba(212, 177, 132, 0.56);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  margin-bottom: 12px;
}

.press-value-card h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.26rem;
  line-height: 1.2;
  color: #ecd8ae;
  margin-bottom: 10px;
}

.press-value-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.72;
}

/* CLOSING QUOTE */

.press-quote-section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.press-quote-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.press-quote-text-dark {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1.34;
  color: #3b2d27;
  margin: 12px auto 0;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .press-hero-grid,
  .press-intro-grid,
  .press-feature-grid,
  .press-values-grid {
    grid-template-columns: 1fr;
  }

  .press-hero-image,
  .press-intro-aside {
    justify-content: flex-start;
  }

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

  .press-card-large {
    grid-row: span 1;
  }

  .press-card-large img {
    min-height: 240px;
    max-height: 280px;
  }
}

@media (max-width: 900px) {
  .press-hero {
    padding-top: 8px;
    padding-bottom: 32px;
  }

  .press-hero-grid {
    gap: 22px;
    min-height: auto;
    padding-top: 8px;
  }

  .press-hero-image {
    justify-content: center;
  }

  .press-hero-image img {
    max-width: 100%;
    height: 220px;
  }

  .press-gallery-grid,
  .press-values-grid {
    grid-template-columns: 1fr;
  }

  .press-feature-image img {
    height: 260px;
  }

  .press-card img,
  .press-card-large img {
    min-height: 220px;
    max-height: 250px;
  }
}

@media (max-width: 560px) {
  .press-hero-text h1 {
    font-size: 2rem;
  }

  .press-hero-description {
    font-size: 0.93rem;
    line-height: 1.78;
  }

  .press-intro-section,
  .press-gallery-section,
  .press-values-section,
  .press-quote-section,
  .press-feature-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .press-card,
  .press-feature-image {
    border-radius: 12px;
  }

  .press-card img,
  .press-card-large img {
    min-height: 210px;
    max-height: 235px;
  }

  .press-value-card {
    padding: 22px 20px;
  }

  .press-value-card h3 {
    font-size: 1.2rem;
  }

  .press-value-card p {
    font-size: 0.92rem;
  }

  .press-quote-text-dark {
    font-size: 1.4rem;
    max-width: 100%;
  }
}
.press-feature-copy-centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
/* =========================================================
   CONTACT PAGE
========================================================= */

.hero-nav a[aria-current="page"],
.mobile-hero-nav a[aria-current="page"] {
  color: #f0d8b0;
}

.hero-nav a[aria-current="page"]::after {
  width: 100%;
}

/* CONTACT HERO */

.contact-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(65, 46, 40, 0.78) 0%,
      rgba(58, 41, 36, 0.82) 50%,
      rgba(50, 36, 33, 0.86) 100%
    ),
    linear-gradient(
      180deg,
      rgba(74, 55, 49, 0.14) 0%,
      rgba(45, 33, 31, 0.10) 100%
    ),
    url("assets/Backgrounds/stone-texture.jpg") center/cover no-repeat;
  padding-top: 8px;
  padding-bottom: 34px;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(200, 161, 114, 0.06), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.03), transparent 20%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.01) 100%
    );
  mix-blend-mode: screen;
  pointer-events: none;
}

.contact-hero .hero-header {
  position: relative;
  z-index: 5;
}

.contact-hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 36px;
  min-height: 240px;
  padding-top: 8px;
}

.contact-hero-text {
  max-width: 520px;
}

.contact-hero-text h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.15rem, 3.5vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  color: #d6b88c;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.contact-hero-description {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.78;
  margin-bottom: 16px;
}

.contact-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-hero-image {
  display: flex;
  justify-content: flex-end;
}

.contact-hero-image img {
  width: 100%;
  max-width: 340px;
  height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

/* INTRO */

.contact-intro-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.contact-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: center;
}

.contact-intro-copy {
  max-width: 760px;
}

.contact-intro-aside {
  display: flex;
  justify-content: flex-end;
}

.contact-intro-note {
  width: 100%;
  max-width: 280px;
  padding: 24px 22px;
  border: 1px solid rgba(138, 106, 69, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.48) 0%,
      rgba(255, 255, 255, 0.2) 100%
    ),
    linear-gradient(
      135deg,
      rgba(181, 140, 93, 0.04) 0%,
      rgba(181, 140, 93, 0.01) 100%
    );
}

.contact-note-line {
  display: block;
  width: 76px;
  height: 1px;
  margin-bottom: 16px;
  background:
    linear-gradient(
      90deg,
      rgba(138, 106, 69, 0.8) 0%,
      rgba(138, 106, 69, 0.16) 100%
    );
}

.contact-intro-note p {
  color: #5b4b41;
  line-height: 1.8;
  font-size: 0.96rem;
}

/* MAIN CONTACT */

.contact-main-section {
  overflow: hidden;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.contact-info-panel {
  max-width: 360px;
  padding-right: 24px;
  border-right: 1px solid rgba(212, 177, 132, 0.08);
}

.contact-info-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.contact-info-item {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(212, 177, 132, 0.16);
}

.contact-info-label {
  display: inline-block;
  color: rgba(212, 177, 132, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  margin-bottom: 10px;
}

.contact-info-item a,
.contact-info-item p {
  color: rgba(245, 235, 220, 0.9);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-form-panel {
  border: 1px solid rgba(200, 161, 114, 0.16);
  padding: 38px 36px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.015) 100%
    ),
    linear-gradient(
      135deg,
      rgba(200, 161, 114, 0.06) 0%,
      rgba(200, 161, 114, 0.015) 100%
    );
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: rgba(212, 177, 132, 0.78);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(212, 177, 132, 0.16);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045) 0%,
      rgba(255, 255, 255, 0.02) 100%
    );
  color: #f3e8d8;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(243, 232, 216, 0.38);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(214, 184, 140, 0.46);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.028) 100%
    );
  box-shadow: 0 0 0 1px rgba(214, 184, 140, 0.14);
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

/* SELECT FIX */

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d6b88c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: center, right 14px center;
  background-size: auto, 14px;
  padding-right: 44px;
  color: #f3e8d8;
}

.form-group select option {
  background-color: #4a3530;
  color: #f3e8d8;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:checked {
  background-color: #6a4d42;
  color: #fff7ec;
}

.form-group select::-ms-expand {
  display: none;
}

/* AUTOFILL FIX */

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus,
.form-group select:-webkit-autofill,
.form-group select:-webkit-autofill:hover,
.form-group select:-webkit-autofill:focus {
  -webkit-text-fill-color: #f5efe6;
  -webkit-box-shadow: 0 0 0 1000px rgba(74, 53, 48, 0.92) inset;
  transition: background-color 9999s ease-in-out 0s;
}

/* BUTTON FIX */

.contact-form-panel .btn,
.contact-form-panel button,
.contact-form-panel .btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  padding: 0 28px;
  margin-top: 10px;
  border: 1px solid rgba(214, 184, 140, 0.34);
  background: rgba(255, 255, 255, 0.03);
  color: #f0dcc0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.28s ease;
  box-shadow: none;
}

.contact-form-panel .btn:hover,
.contact-form-panel button:hover,
.contact-form-panel .btn-light:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(230, 207, 170, 0.52);
  color: #f4e4c9;
  transform: translateY(-1px);
}

/* QUOTE */

.contact-quote-section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.contact-quote-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-quote-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: #4e4036;
  max-width: 20ch;
  margin: 0 auto;
}

/* CLOSING */

.contact-closing-section {
  padding-top: 74px;
  padding-bottom: 88px;
}

.contact-closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-closing-text {
  max-width: 680px;
  margin-inline: auto;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .contact-hero-grid,
  .contact-intro-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-image,
  .contact-intro-aside {
    justify-content: flex-start;
  }

  .contact-info-panel {
    max-width: 100%;
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .contact-hero {
    padding-top: 8px;
    padding-bottom: 34px;
  }

  .contact-hero-grid {
    gap: 24px;
    min-height: auto;
    padding-top: 8px;
  }

  .contact-hero-image {
    justify-content: center;
  }

  .contact-hero-image img {
    max-width: 100%;
    height: 240px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 28px 24px;
  }
}

@media (max-width: 560px) {
  .contact-hero-text h1 {
    font-size: 2rem;
  }

  .contact-hero-description {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .contact-intro-section,
  .contact-quote-section,
  .contact-closing-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .contact-form-panel {
    padding: 22px 20px;
  }

  .contact-quote-text {
    font-size: 1.7rem;
    max-width: 100%;
  }

  .contact-form-panel .btn,
  .contact-form-panel button,
  .contact-form-panel .btn-light {
    width: 100%;
  }
}
/* =========================================================
   CONTACT PANEL TONE-DOWN FIX
========================================================= */

.contact-info-panel .section-title,
.contact-info-panel h2 {
  color: #d8b78b;
  text-shadow: none;
}

.contact-info-panel .section-text,
.contact-info-panel > p,
.contact-info-item a,
.contact-info-item p {
  color: rgba(222, 202, 177, 0.72);
}

.contact-info-label {
  color: rgba(212, 177, 132, 0.52);
}

.contact-info-item {
  border-bottom: 1px solid rgba(212, 177, 132, 0.09);
}

/* =========================================================
   SECTION TRANSITION FIX (Paper → Stone)
   Adds depth between light and dark sections
========================================================= */

.section-paper + .section-stone {
  box-shadow: inset 0 40px 60px rgba(0,0,0,0.18);
}