:root {
    --bg: #f7f5f0;
    --surface: #fbfaf7;
    --text: #1f1d1a;
    --muted: #66615b;
    --line: #d9d3ca;
    --button: #1f1d1a;
    --button-text: #f7f5f0;
    --max-width: 1240px;
    --section-gap: 120px;
    --radius: 20px;
    --shadow: 0 12px 40px rgba(31, 29, 26, 0.07);
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .container {
    width: min(100% - 48px, var(--max-width));
    margin: 0 auto;
  }
  
  .site-header {
    position: absolute;
    top: 10px;
    right: 24px;
    z-index: 1000;

  }
  
  .header-inner {
    justify-content: flex-end;
    gap: 24px;
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
  }
  
  .brand-logo {
    height: 42px;
    width: auto;
    max-width: 260px;
  }
  
  .privacy-logo {
    display: flex;
    justify-content: center;
    padding: 40px 0px;
  }

  .inline-logo {
    width:100%;
    max-width: 540px;
    height: auto;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.95rem;
    color: var(--muted);
  }
  
  .privacy-nav {
    text-align: right;
    margin-top: 10px;
  }

  .nav a {
    transition: color 0.2s ease;
  }
  
  .nav a:hover,
  .nav a:focus-visible {
    color: var(--text);
  }
  
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid var(--button);
    background: var(--button);
    color: var(--button-text);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, opacity 0.2s ease;
    min-width: 250px;
  }
  
  .button:hover,
  .button:focus-visible {
    transform: translateY(-1px);
    opacity: 0.95;
  }
  
  .hero-button-wrap{
    text-align: center;
  }

  main {
    overflow: clip;
  }
  
  section {
    padding: 0 0 var(--section-gap);
  }
  
  .hero {
    padding-top: 72px;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: end;
  }
  
  
  .hero-logo-wrap {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
  }
  
  .hero-logo {
    width: 100%;
    max-width: 540px;
    height: auto;
  }
  

  h2 {
    font-size: clamp(2.25rem, 3.5vw, 3.35rem);
  }
  h3 {
    font-size: clamp(1.5rem, 1vw, 2rem);
  }

  h1,
  h2,
  h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    padding-bottom: 0.2em;
  }
  
  .strapline {
    text-align: center;
    font-size: clamp(1.1rem, 1.55vw, 1.45rem);
    color: var(--muted);
    margin: 30px 0 50px;
    max-width: none;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }
  
  .intro {
    max-width: 64ch;
    font-size: 1.06rem;
    color: var(--text);
    margin: 0 0 34px;
  }
  
  .service-list {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
    display: grid;
    gap: 14px;
  }
  
  .service-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: var(--text);
    font-size: 1rem;
  }
  
  .service-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text);
    flex: 0 0 8px;
    margin-top: 0.58em;
  }
  
  .privacy-list li {
    display: list-item;
  }
  
  .privacy-list li::before {
    display: none;
  }
  
  .privacy-list {
    list-style: disc;
    padding-left: 1.2em;
  }

  .hero-image-wrap {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 640px;
  }
  
  .hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  
  .about-section {
    
  }
  
  .section-header {
    margin-bottom: 0px;
  }
  
  .section-header-simple {
    margin-bottom: 0px;
  }
  
  /*
  .section-title {
    font-size: clamp(2.25rem, 3.5vw, 3.35rem);
    
  }*/
  
  .section-title-single-line {
    white-space: nowrap;
  }
  
  .about-copy {
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 34px 30px;
  }
  
  .about-copy-wide {
    
  }
  
  .about-copy p {
    margin: 0 0 20px;
    font-size: 1rem;
  }
  
  .about-copy p:last-child {
    margin-bottom: 0;
  }
  
  .gallery-header {
    margin-bottom: 0px;
  }
 
  /*
  .gallery-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
  }*/
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
  }
  
  .gallery-card {
    position: relative;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  
  .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .gallery-card.large-left {
    grid-column: span 5;
    min-height: 520px;
  }
  
  .gallery-card.large-right {
    grid-column: span 7;
    min-height: 520px;
  }
  
  .gallery-card.small-left,
  .gallery-card.small-right {
    grid-column: span 6;
    min-height: 320px;
  }
  
  .cta {
    padding-bottom: 90px;
  }
  
  .cta-panel {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.2));
    padding: 48px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
  }
  
  /*
  .cta-title {
    font-size: clamp(2.25rem, 4vw, 3.6rem);
    margin: 0 0 12px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    line-height: 0.98;
  }*/
  
  .cta-text {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
  }
  
  .site-footer {
    border-top: 1px solid var(--line);
    padding: 28px 0 44px;
  }
  
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 48px;
    align-items: start;
  }
  
  .footer-left,
  .footer-right {
    font-size: 0.9rem;
    color: var(--muted);
  }
  
  .footer-right {
    text-align: right;
  }
  
  .footer-right span {
    display: block;
  }
  
  @media (max-width: 1024px) {
    :root {
      --section-gap: 88px;
    }
  
    .hero-grid,
    .cta-panel,
    .footer-inner {
      grid-template-columns: 1fr;
    }
  
    .hero-image-wrap {
      min-height: 520px;
    }
  
    .footer-right {
      text-align: left;
    }
  
    .strapline,
    .section-title-single-line {
      white-space: normal;
    }
  }
  
  @media (max-width: 768px) {
    .container {
      width: min(100% - 32px, var(--max-width));
    }
  
    .header-inner {
      min-height: 74px;
    }
  
    .brand-logo {
      height: 34px;
      max-width: 220px;
    }
  
    .nav {
      gap: 18px;
      font-size: 0.92rem;
    }
  
    .hero {
      padding-top: 40px;
    }
  
    .strapline {
      margin-bottom: 22px;
      font-size: 1.15rem;
    }
  
    .intro {
      margin-bottom: 26px;
      font-size: 1rem;
    }
  
    .hero-grid {
      gap: 28px;
    }
  
    .hero-image-wrap {
      min-height: 420px;
    }
  
    .about-copy {
      padding: 26px 22px;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .gallery-card.large-left,
    .gallery-card.large-right,
    .gallery-card.small-left,
    .gallery-card.small-right {
      grid-column: auto;
      min-height: 280px;
    }
  
    .cta-panel {
      padding: 30px 22px;
    }
  
    .button {
      width: 100%;
    }
  }
  
  @media (max-width: 560px) {
    .nav {
      display: none;
    }
  
    .brand-logo {
      height: 30px;
      max-width: 200px;
    }
  
    .hero-logo {
      max-width: 320px;
    }
  
    .hero-image-wrap {
      min-height: 340px;
    }
  
    .site-footer {
      padding-bottom: 34px;
    }
  
    .footer-left,
    .footer-right {
      font-size: 0.84rem;
    }
  }

  /* HAMBURGER BUTTON */

/* HAMBURGER */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger {
  position: fixed;
  top: 10px;
  right:20px;
  background: var(--bg);
  opacity: .5;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--muted);
  margin: 6px 0;
}

/* MOBILE NAV */

.mobile-nav {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100%;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  text-align: center;
  background-color: var(--bg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}



.mobile-nav a {
  padding: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* OPEN STATE */

.mobile-nav.open {
  max-height: 400px;
}

/* HAMBURGER ANIMATION */

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  
}

/* transform into X */

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE ONLY */

@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

}