



:root {
  --bg: #f6f4ef;
  --bg-alt: #efe9de;
  --ink: #1f1b16;
  --muted: #6d6256;
  --accent: #b18b3f;
  --accent-dark: #8f6f2f;
  --accent-2: #2c2a27;
  --surface: #ffffff;
  --border: rgba(31, 27, 22, 0.1);
  --shadow: 0 10px 30px rgba(26, 26, 26, 0.08);
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f9f9fe;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
}

body[data-page="home"] {
  background: #ffffff;
}

body[data-page="about"] {
  background: #ffffff;
}

html {
  overflow-y: scroll;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(31, 27, 22, 0.14);
  width: 100%;
  height: 120px;
  box-sizing: border-box;
}

#site-header {
  min-height: 120px;
  height: auto;
}

.site-header {
  min-height: 120px;
  height: auto;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 120px;
  min-height: 120px;
  padding: 16px 0;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-size: 1.7rem;
  margin-left: 0;
  transform: translateX(-2px);
  line-height: 1;
}

.brand img {
  height: 78px;
  width: auto;
  display: block;
}

.brand span {
  display: inline-block;
  transform: translateX(-1px);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  transform: translate(10px, -1px);
  flex-wrap: nowrap;
  white-space: nowrap;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  padding: 0;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--accent-dark);
  display: block;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  position: relative;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
  border-color: var(--accent);
}

.nav-link.is-active::after {
  content: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto 80px;
  padding: 48px 28px 0;
}

.page:empty {
  margin-bottom: 40px;
  padding-top: 24px;
}

body[data-page="home"] .page:empty {
  margin: 0;
  padding: 0;
}

body[data-page="home"] .page,
body[data-page="home"] .about-hero,
body[data-page="home"] .about-story-wrap,
body[data-page="home"] .why-wrap,
body[data-page="home"] .footer-wrap,
body[data-page="home"] .footer-bottom {
  max-width: 1280px;
}

body[data-page="home"] .about-hero,
body[data-page="home"] .about-story-wrap,
body[data-page="home"] .why-wrap {
  width: 1280px;
}

@media (max-width: 768px) {
  body[data-page="home"] .hero-visual {
    transform: translateX(-44px);
  }

  body[data-page="home"] .about-hero-bg {
    background-position: 28% center;
  }
}

.about-hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  width: 1180px;
  margin: 0 auto;
  padding-top: 74px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  grid-template-areas: "content image";
  column-gap: 60px;
  align-items: stretch;
}

.about-hero-bg {
  grid-area: image;
  width: 100%;
  min-height: 400px;
  margin-left: 10px;
  border-radius: 0;
  background: url("../img/4.jpeg") center / 92% no-repeat;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  grid-area: content;
  max-width: 640px;
  padding: 44px 28px 90px 10px;
  margin-left: 0;
  text-align: left;
}

.about-eyebrow {
  display: inline-block;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c1a362;
  margin-bottom: 14px;
}

.about-hero-content h1 {
  margin: 0 0 14px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 54px;
  line-height: 1.05;
  color: #000000;
  font-weight: 700;
}

.about-hero-content h1 span {
  display: block;
  font-style: italic;
  color: #caa35b;
  font-weight: 600;
}

.about-hero-content p {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  color: #000000;
  line-height: 1.7;
  max-width: 520px;
}

@media (max-width: 900px) {
  .about-hero-content {
    margin-left: 0;
    padding: 96px 22px 70px;
  }

  .about-hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .about-hero {
    min-height: 460px;
  }

  .about-hero-content h1 {
    font-size: 34px;
  }
}

.about-story {
  position: relative;
  background: linear-gradient(180deg, #f6f1e8 0%, #f3ede2 55%, #f7f4ee 100%);
  margin-top: 32px;
  overflow: hidden;
  padding: 72px 0 90px;
}

.about-story::after {
  content: "";
  position: absolute;
  right: -70px;
  top: 24px;
  width: 140px;
  height: 140px;
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(199, 185, 156, 0.55), rgba(235, 228, 214, 0.15));
  transform: rotate(12deg);
  pointer-events: none;
}

.about-story-wrap {
  width: 1180px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
  
}

.about-story-visual {
  position: relative;
  width: 100%;
  display: grid;
  place-items: start;
  justify-self: start;
  
}

.about-story-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: url("../img/Container (1).png") center / cover no-repeat;
  box-shadow: none;
  
}


.about-story-text h2 {
  margin: 0 0 16px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 28px;
  color: #2b2b2b;
  line-height: 1.2;
}

.about-story-text h2 span {
  display: block;
  color: #b9934f;
}

.about-story-text p {
  margin: 0 0 16px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  color: #6c665e;
  line-height: 1.7;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-story-wrap {
    grid-template-columns: 1fr;
  }

  .about-story-visual {
    justify-items: center;
  }
}

@media (max-width: 600px) {
  .about-story {
    padding: 56px 0 70px;
  }

  .about-story-image {
    max-width: 320px;
  }

}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: start;
}

.hero-content h1 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 12px;
}

.hero-title-accent {
  color: #B9934F;
}

.hero-content p:not(.hero-lead):not(.hero-strong) {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: #4E4639;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 16px;
}

.hero-content .hero-lead {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: #775A19;
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 18px;
}

.hero-content .hero-strong {
  font-weight: 900;
  color: #1A1C1F;
  font-size: 20px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  text-decoration: none;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 12px 22px;
  border-radius: 8px;
  box-shadow: 0 10px 18px rgba(140, 109, 47, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(140, 109, 47, 0.25);
}

.hero-visual {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  transform: translateX(10px);
}

body[data-page="about"] .hero-visual {
  justify-self: end;
  margin-left: auto;
  gap: 0;
  transform: translateX(0);
  padding-top: 10px;
}

body[data-page="about"] .hero-image {
  width: 480px;
  height: 394px;
  aspect-ratio: auto;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: url("../img/3.jpeg") center / cover no-repeat;
  box-shadow: 0 18px 36px rgba(15, 15, 15, 0.18);
  transform: translateY(10px);
}

body[data-page="about"] .hero-image::after {
  content: none;
}

body[data-page="about"] .hero-image-secondary {
  width: 360px;
  height: 220px;
  margin-top: -51px;
  margin-left: 28px;
  border-radius: 10px;
  background: url("../img/4.jpeg") center / cover no-repeat;
  box-shadow: 0 16px 28px rgba(18, 18, 18, 0.16);
  position: relative;
  z-index: 2;
  transform: translateY(-17px);
}

body[data-page="about"] .hero-visual::after {
  content: none;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background: url("../img/4.jpeg") center / cover no-repeat;
  box-shadow: 0 18px 36px rgba(15, 15, 15, 0.2);
}

.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  column-gap: 10px;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.15);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}

.badge-title {
  font-size: 12px;
  text-transform: uppercase;
  color: #4E4639;
  letter-spacing: 0.12em;
}

.badge-icon {
  width: 30px;
  height: 30px;
  background: url("../img/Overlay.png") center / contain no-repeat;
}

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

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 900px) {
  .header-wrap {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    height: auto;
    padding: 14px 16px;
    gap: 12px;
    max-width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 0 18px;
    z-index: 30;
  }

  .site-nav.is-open {
    display: flex;
  }
}

@media (max-width: 900px) {
  .about-hero,
  .about-hero-bg,
  .about-story-wrap,
  .journey-wrap,
  .why-wrap,
  .services-card--gold,
  .services-card--soft,
  .why-card--highlight,
  .why-card--mini,
  .offer-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .services-card--gold,
  .services-card--soft,
  .offer-card {
    height: auto !important;
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  .about-hero {
    height: auto !important;
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "content";
  }

  .about-hero-bg {
    min-height: 240px;
  }

  .about-hero-content {
    padding: 48px 16px 36px 18px;
    max-width: 100%;
  }

  .about-hero-content h1 {
    font-size: 28px;
  }

  .about-hero-content h1 span {
    font-size: 26px;
  }

  .about-hero-content p {
    font-size: 12px;
    max-width: 100%;
  }

  .about-story-wrap,
  .journey-wrap,
  .why-wrap {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

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

  .about-story-image {
    max-width: 100%;
  }

  .journey-wrap {
    grid-template-columns: 1fr;
  }

  .journey-visual {
    justify-self: center;
    background-position: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card--highlight,
  .why-card--mini {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 600px) {
  .header-wrap {
    padding: 10px 14px;
    height: auto;
    min-height: 72px;
  }

  .brand {
    font-size: 1.7rem;
  }

  .brand img {
    height: 48px;
  }

  .site-header {
    height: auto;
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    top: 70px;
  }

  .page {
    padding: 32px 18px 0;
  }

  body[data-page="about"] .hero-visual {
    width: 100%;
    justify-self: center;
    align-items: center;
    transform: none;
    overflow: hidden;
  }

  body[data-page="about"] .hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    transform: none;
  }

  body[data-page="about"] .hero-image-secondary {
    width: 82%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 2.6;
    margin: -18px 0 0;
    transform: none;
  }
}

.journey {
  background: #f9f9fe;
  padding: 0 0 64px;
  margin-top: -24px;
}

.journey-wrap {
  width: 1130px;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: start;
}

.journey-text h2 {
  margin: 0 0 28px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 38px;
  line-height: 1.05;
  color: #1f1f1f;
}

.journey-title {
  display: block;
}

.journey-title.accent {
  color: #b28a3b;
}

.journey-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: start;
  margin-bottom: 18px;
}

.journey-no {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 12px;
  color: #b7a489;
  letter-spacing: 0.06em;
}

.journey-item h3 {
  margin: 0 0 6px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 16px;
  color: #1f1f1f;
}

.journey-item p {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  color: #6f6a60;
  line-height: 1.6;
}

.journey-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  background: url("../img/Background+Shadow.png") right center / contain no-repeat;
  box-shadow: none;
  justify-self: end;
}

@media (max-width: 980px) {
  .journey-wrap {
    grid-template-columns: 1fr;
  }

  .journey-visual {
    order: -1;
  }
}

@media (max-width: 600px) {
  .journey {
    padding: 40px 0 56px;
  }

  .journey-text h2 {
    font-size: 30px;
  }
}

.why {
  position: relative;
  background: linear-gradient(180deg, #f7f4ee 0%, #f3f3f8 55%, #f6f5fb 100%);
  padding: 56px 0 80px;
  overflow: hidden;
  margin-top: 0;
}

.why::before,
.why::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 18px;
  width: 130px;
  height: 130px;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(201, 187, 160, 0.5), rgba(235, 230, 220, 0.1));
  transform: rotate(10deg);
  pointer-events: none;
}

.why::after {
  right: 24px;
  top: 140px;
  width: 90px;
  height: 90px;
  opacity: 0.6;
}

.why-wrap {
  width: 1180px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}

.why-head {
  text-align: center;
  margin-bottom: 36px;
}

.why-head h2 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 30px;
  margin: 0;
  color: #1f1f1f;
}

.why-underline {
  display: inline-block;
  width: 56px;
  height: 3px;
  background: #8b6a1d;
  margin-top: 10px;
  border-radius: 3px;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
}

.why-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(25, 25, 25, 0.08);
}

.why-card--large {
  padding: 34px 32px;
  display: grid;
  align-content: center;
  text-align: center;
  min-height: 300px;
}

.why-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  background: url("../img/Icon (1).png") center / contain no-repeat;
}

.why-card--large h3 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 22px;
  margin: 0 0 10px;
  color: #1f1f1f;
}

.why-card--large p {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  color: #6b6660;
  line-height: 1.6;
}

.why-stack {
  display: grid;
  gap: 18px;
}

.why-card--highlight {
  background: #7c5e16;
  color: #f7f1e3;
  padding: 34px 32px;
  width: 100%;
  min-height: 288px;
  display: grid;
  align-content: center;
}

.why-highlight-value {
  display: block;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-highlight-label {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0e6cf;
}

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card--mini {
  padding: 20px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e4e2e4;
  box-shadow: none;
  width: 100%;
  min-height: 288px;
}

.why-mini-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 12px;
  display: block;
  background-image: url("../img/Margin.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.why-mini-icon.alt {
  background-image: url("../img/Margin (1).png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.why-card--mini h4 {
  margin: 0 0 6px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 13px;
  color: #3e3a35;
}

.why-card--mini p {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 12px;
  color: #7a746d;
  line-height: 1.5;
}

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

@media (max-width: 700px) {
  .why-row {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  margin-top: 60px;
  background: #1f1f1f;
  color: #d7d7d7;
  padding: 48px 0 64px;
  border-top: none;
}

.footer-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-col {
  min-width: 0;
  width: 100%;
}

.footer-title {
  margin: 0 0 16px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  letter-spacing: 0.04em;
  color: #b68a2f;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-heading {
  margin: 0 0 16px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  letter-spacing: 0.04em;
  color: #b68a2f;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-links,
.footer-text {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 8px;
  color: #d7d7d7;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-text {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #d7d7d7;
}

.footer-address {
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.social:hover {
  background: #b68a2f;
  border-color: #b68a2f;
  transform: translateY(-1px);
}

.social i {
  font-size: 18px;
  color: #ffffff;
}

.footer-bottom {
  max-width: 1180px;
  margin: 40px auto 0;
  padding: 16px 28px 0;
  text-align: center;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 13px;
  color: #d7d7d7;
  border-top: none;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .footer-wrap {
    grid-template-columns: 1fr;
  }
}

.about-vision {
  background: #f9f9fe;
  padding: 64px 0 90px;
}


.about-vision-wrap {
  max-width: 1180px;
  width: 1180px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.about-vision-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.about-vision-text > .about-vision-block:first-child {
  transform: translateX(-3px);
}

.about-vision-text > .about-vision-block:last-child {
  transform: translateX(10px);
}

.about-vision-block {
  background: #E8E8E8;
  border: 1px solid #ece6dc;
  border-radius: 16px;
  padding: 26px 24px 24px;
  box-shadow: 0 14px 28px rgba(22, 22, 22, 0.08);
  position: relative;
  overflow: hidden;
}

.about-vision-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0, rgba(178, 138, 59, 0.12), transparent 55%);
  pointer-events: none;
}

.about-vision-block > * {
  position: relative;
  z-index: 1;
}

.about-vision-label {
  display: inline-block;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b28a3b;
  margin-bottom: 8px;
}

.about-vision-text h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 24px;
  line-height: 1.2;
  color: #2b2b2b;
}

.about-vision-text p {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  color: #6c665e;
  line-height: 1.7;
  max-width: none;
}

.about-vision-visual {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3.2;
  background: url("../img/Overlay+Shadow.png") center / cover no-repeat;
  box-shadow: 0 18px 28px rgba(21, 21, 21, 0.14);
  border-radius: 6px;
  justify-self: end;
}

@media (max-width: 900px) {
  .about-vision-text {
    grid-template-columns: 1fr;
  }
}

.services {
  background: #f5f5f9;
  padding: 60px 0 90px;
}

.services-wrap {
  max-width: 1180px;
  width: 1180px;
  margin: 0 auto;
  padding: 0;
}

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

.service-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(24, 24, 24, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 460px;
}

.service-card-media {
  height: 220px;
  background: var(--service-image) center / cover no-repeat;
}

.service-card-body {
  padding: 22px 22px 26px;
}

.service-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.service-card-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(177, 139, 63, 0.18);
  color: #b28a3b;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.service-card-title h3 {
  margin: 0;
  font-family: "Noto Serif", "Georgia", serif;
  font-size: 20px;
  font-weight: 400;
  color: rgb(26, 28, 31);
}

.service-card-body p {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgb(78, 70, 57);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .services-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.services-eyebrow {
  display: inline-block;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b28a3b;
  margin-bottom: 10px;
}

.services h1 {
  margin: 0 0 72px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 72px;
  line-height: 1.12;
  color: #2b2b2b;
  font-weight: 700;
}

.services h1 span {
  display: block;
  font-style: italic;
  color: #b28a3b;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: 632px 1fr;
  gap: 24px;
  justify-content: start;
}

.services-grid {
  position: relative;
}

.services-grid::before {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(178, 138, 59, 0), rgba(178, 138, 59, 0.45) 45%, rgba(178, 138, 59, 0.45) 55%, rgba(178, 138, 59, 0));
  pointer-events: none;
}

.services-grid::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(135deg, #e6c46b, #b28a3b);
  box-shadow: 0 6px 14px rgba(20, 16, 10, 0.18);
  pointer-events: none;
}

.services-card {
  position: relative;
  min-height: 280px;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  align-items: end;
  transition: transform 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 16px 30px rgba(20, 16, 10, 0.18);
  will-change: transform;
}

.services-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 50px rgba(20, 16, 10, 0.28);
}

.services-card:hover .services-overlay {
  background: linear-gradient(180deg, rgba(20, 16, 10, 0) 0%, rgba(20, 16, 10, 0.5) 70%, rgba(20, 16, 10, 0.85) 100%);
}

.services-card--gold {
  width: 450px;
  background-color: #14100a;
  background-image: url("../img/Background.png");
  background-repeat: no-repeat;
  background-size: 120%;
  background-position: center 45%;
}

.services-card--soft {
  background: url("../img/Overlay+Border+Shadow.png") center / cover no-repeat;
  width: 450px;
  justify-self: end;
  margin-right: -10px;
}

.services-overlay {
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(20, 16, 10, 0) 0%, rgba(20, 16, 10, 0.55) 75%, rgba(20, 16, 10, 0.7) 100%);
  color: #f4f1ea;
}

.services-card--soft .services-overlay {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, rgba(30, 30, 30, 0.55) 75%, rgba(30, 30, 30, 0.7) 100%);
}

.services-overlay h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 18px;
  color: #ffffff;
}

.services-overlay p {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #e8e2d8;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }
}

.services-cert {
  background: #f9f9fe;
  padding: 70px 0 90px;
}

.services-cert-wrap {
  max-width: 1180px;
  width: 1180px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
}

.services-cert-eyebrow {
  display: inline-block;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 16px;
  color: #b28a3b;
  font-style: italic;
  margin-bottom: 10px;
}

.services-cert-text h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 30px;
  color: #2b2b2b;
}

.services-cert-text p {
  margin: 0 0 18px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #6c665e;
  max-width: 420px;
}

.services-cert-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 12px;
  color: #6c665e;
}

.services-cert-list li {
  position: relative;
  padding-left: 22px;
}

.services-cert-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #b28a3b;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 4px;
  box-shadow: inset 0 0 0 2px #f7f3ea;
}

.services-cert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: #8b6a1d;
  color: #ffffff;
  text-decoration: none;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 10px 18px rgba(139, 106, 29, 0.25);
}

.services-cert-visual {
  height: 320px;
  border-radius: 10px;
  background: url("../img/Container (3).png") center / cover no-repeat;
  box-shadow: 0 12px 20px rgba(20, 20, 20, 0.12);
  position: relative;
}


@media (max-width: 900px) {
  .services-cert-wrap {
    grid-template-columns: 1fr;
  }
}

.services-offer {
  background: #f9f9fe;
  padding: 50px 0 90px;
}

.services-offer-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.offer-card {
  border-radius: 12px;
  padding: 24px 26px 22px;
  position: relative;
  overflow: hidden;
  width: 456px;
  height: 407px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.offer-card--light {
  background: #efeff4;
  color: #2b2b2b;
}

.offer-card--dark {
  background: #1f1b19;
  color: #e6e1d6;
}

.offer-icon {
  font-size: 18px;
  color: #b28a3b;
  margin-bottom: 12px;
}

.offer-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 20px;
}

.offer-card p {
  margin: 0 0 18px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: inherit;
  max-width: 360px;
}

.offer-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
}

.offer-link {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 12px;
  color: #b28a3b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.offer-link.dark {
  color: #b28a3b;
}

.offer-lock {
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border: 4px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px 18px 8px 8px;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.04);
}

@media (max-width: 900px) {
  .services-offer-wrap {
    grid-template-columns: 1fr;
  }
}

.contact {
  background:
    radial-gradient(900px 420px at 85% 10%, rgba(177, 139, 63, 0.12), rgba(177, 139, 63, 0) 70%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  padding: 60px 0 90px;
  color: #2b2b2b;
  position: relative;
  overflow: hidden;
}

.contact-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}

.contact-eyebrow {
  display: inline-block;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 28px;
  color: #b28a3b;
  margin-bottom: 8px;
}

.contact-header h1 {
  margin: 0 0 26px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 22px;
  color: var(--ink);
}

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

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

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 14px 24px rgba(20, 20, 20, 0.12);
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(177, 139, 63, 0.12);
  display: grid;
  place-items: center;
  color: #b28a3b;
  font-size: 16px;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 22px;
  width: 130px;
  height: 130px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(177, 139, 63, 0.18), rgba(31, 27, 22, 0.08));
  transform: rotate(12deg);
  pointer-events: none;
  z-index: 0;
}

.contact::after {
  right: 18px;
  top: 140px;
  width: 90px;
  height: 90px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(177, 139, 63, 0.14), rgba(255, 255, 255, 0.2));
  opacity: 0.65;
  transform: rotate(8deg);
}

.contact-wrap {
  position: relative;
  z-index: 1;
}

.contact-item h3 {
  margin: 0 0 6px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  color: #2b2b2b;
}

.contact-item p {
  margin: 0 0 6px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 13px;
  color: #6c665e;
  line-height: 1.6;
}

.kvkk {
  background: #f9f9fe;
  padding: 0 0 80px;
}

.kvkk-hero {
  background: #ffffff;
  border-bottom: 1px solid #e4e0d7;
  padding: 46px 0;
}

.kvkk-hero-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.kvkk-hero h1 {
  margin: 0 0 8px;
  font-family: "Noto Serif", "Georgia", serif;
  font-size: 48px;
  font-weight: 400;
  color: #000000;
}

.kvkk-hero p {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  color: #6c665e;
}

.kvkk-card {
  max-width: 1180px;
  margin: 28px auto 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(26, 26, 26, 0.08);
  padding: 34px 36px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: #2b2b2b;
}

.kvkk-card h2 {
  margin: 0 0 14px;
  font-family: "Noto Serif", "Georgia", serif;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.01em;
}

.kvkk-card h3 {
  margin: 20px 0 8px;
  font-family: "Manrope", "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #000000;
}

.kvkk-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: #5f5b55;
}

.kvkk-card ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: #5f5b55;
  font-size: 14px;
  line-height: 1.75;
}

body[data-page="uyum"] {
  background: #ffffff;
  min-height: 100vh;
}

.uyum-page {
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 48px 28px 0;
}

.uyum-page > h1 {
  margin: 0 0 20px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 32px;
  color: #1f1f1f;
}

.uyum-panel {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  box-shadow: 0 16px 28px rgba(31, 27, 22, 0.08);
  overflow: hidden;
}

.uyum-panel h2 {
  margin: 0;
  padding: 18px 24px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f5dbf;
  background: #f7f7f7;
  border-bottom: 1px solid #e2e2e2;
}

.uyum-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uyum-list li {
  padding: 18px 24px;
  border-bottom: 1px solid #ededed;
  color: #2e2e2e;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
}

.uyum-list li:last-child {
  border-bottom: none;
}


@media (max-width: 768px) {
  .kvkk-hero h1 {
    font-size: 28px;
  }

  .kvkk-hero-wrap,
  .kvkk-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .uyum-page {
    padding: 40px 16px 60px;
  }

  .uyum-panel h2,
  .uyum-list li {
    padding: 16px 18px;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* === Responsive: Tablet & Mobile === */
@media (max-width: 1024px) {
  .header-wrap,
  .page,
  .journey-wrap,
  .why-wrap,
  .about-story-wrap,
  .services-wrap,
  .services-cert-wrap,
  .contact-wrap {
    max-width: 100%;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-hero {
    width: 100%;
    height: auto;
    min-height: 420px;
  }

  .about-hero-bg {
    width: 100%;
    
  }

  .about-hero-content {
    padding: 72px 24px 56px 32px;
    max-width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .journey-wrap {
    grid-template-columns: 1fr;
  }

  .journey-visual {
    justify-self: center;
    background-position: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card--highlight,
  .why-card--mini {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page {
    padding: 32px 20px 0;
  }

  .about-hero {
    height: auto;
  }

  .about-hero-content h1 {
    font-size: 34px;
  }

  .about-hero-content h1 span {
    font-size: 32px;
  }

  .about-hero-content p {
    font-size: 12px;
  }

  .about-story-wrap {
    grid-template-columns: 1fr;
  }

  .about-story-visual {
    justify-items: center;
  }

  .services h1 {
    font-size: 44px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-card--gold,
  .services-card--soft {
    width: 100%;
    height: auto;
    min-height: 280px;
  }

  .services-cert-visual {
    height: 260px;
  }

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

@media (max-width: 480px) {
  .header-wrap,
  .page,
  .journey-wrap,
  .why-wrap,
  .about-story-wrap,
  .services-wrap,
  .services-cert-wrap,
  .contact-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-hero-content {
    padding: 56px 16px 40px 18px;
  }

  .about-hero-content h1 {
    font-size: 22px;
  }

  .about-hero-content h1 span {
    font-size: 20px;
  }

  .about-hero-content p {
    font-size: 11px;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}

/* Nilglobal2 background theme + square decor */
.about-story,
.why,
.journey,
.services,
.services-cert,
.about-vision,
.kvkk,
.page.hero {
  position: relative;
  overflow: hidden;
}

.about-story,
.services,
.about-vision {
  background:
    radial-gradient(900px 420px at 85% 10%, rgba(177, 139, 63, 0.12), rgba(177, 139, 63, 0) 70%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.why,
.journey,
.services-cert,
.kvkk,
.page.hero {
  background:
    radial-gradient(700px 260px at 85% 0%, rgba(177, 139, 63, 0.18), rgba(177, 139, 63, 0) 70%),
    var(--bg-alt);
}

.kvkk {
  background: #ffffff;
}

.about-story::before,
.why::before,
.journey::before,
.services::before,
.services-cert::before,
.about-vision::before,
.kvkk::before,
.page.hero::before,
.about-story::after,
.why::after,
.journey::after,
.services::after,
.services-cert::after,
.about-vision::after,
.kvkk::after,
.page.hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 22px;
  width: 130px;
  height: 130px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(177, 139, 63, 0.18), rgba(31, 27, 22, 0.08));
  transform: rotate(12deg);
  pointer-events: none;
  z-index: 0;
}

.about-story::after,
.why::after,
.journey::after,
.services::after,
.services-cert::after,
.about-vision::after,
.kvkk::after,
.page.hero::after {
  right: 18px;
  top: 140px;
  width: 90px;
  height: 90px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(177, 139, 63, 0.14), rgba(255, 255, 255, 0.2));
  opacity: 0.65;
  transform: rotate(8deg);
}

.about-story-wrap,
.why-wrap,
.journey-wrap,
.services-wrap,
.services-cert-wrap,
.about-vision-wrap,
.kvkk-hero-wrap,
.kvkk-card,
.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .why {
  background: #F3F3F3;
}

body[data-page="home"] .why::before,
body[data-page="home"] .why::after {
  background: #F3F3F3;
}

body[data-page="home"] .about-story {
  background: #ffffff;
}

body[data-page="home"] .about-story::before,
body[data-page="home"] .about-story::after {
  background: #ffffff;
}

body[data-page="about"] .page.hero {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  background: #ffffff;
}

@media (max-width: 600px) {
  body[data-page="about"] .page.hero {
    padding-left: 16px;
    padding-right: 16px;
  }
}

body[data-page="about"] .page.hero::before,
body[data-page="about"] .page.hero::after {
  background: #ffffff;
}

body[data-page="about"] .about-vision {
  background: #ffffff;
}

body[data-page="about"] .about-vision::before,
body[data-page="about"] .about-vision::after {
  background: #ffffff;
}

body[data-page="about"] .about-vision-wrap {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

body[data-page="services"] .services-cert {
  background: #F3F3F3;
}

body[data-page="services"] .services-cert::before,
body[data-page="services"] .services-cert::after {
  background: #F3F3F3;
}

body[data-page="services"] .services {
  background: #f5f5f9;
}

body[data-page="services"] .services::before,
body[data-page="services"] .services::after {
  background: #f5f5f9;
}

body[data-page="services"] .services-wrap {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

body[data-page="contact"] .contact {
  background: #ffffff;
}

body[data-page="contact"] .contact::before,
body[data-page="contact"] .contact::after {
  background: #ffffff;
}

body[data-page="contact"] .contact-wrap {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
