/* Align about page styles (from Website 2.0). */
:root {
      --cream:       #FAF6F1;
      --cream-deep:  #F2EBE0;
      --white:       #FFFFFF;
      --gold:        #C4A882;
      --gold-light:  #D9C4A3;
      --sand:        #F0E9DE;
      --sage-medium: #7D8F76;
      --text:        #3A3530;
      --text-muted:  #6E6A61;
      --border:      #E8E0D5;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { background: var(--cream); color: var(--text); font-family: 'Raleway', sans-serif; font-weight: 400; line-height: 1.85; }

    /* NAV */
    nav {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 72px; background: rgba(250,246,241,0.92);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(232,224,213,0.6); position: sticky; top: 0; z-index: 100;
    }
    .nav-logo { display: flex; flex-direction: row; align-items: center; gap: 12px; text-decoration: none; }
    .logo-word { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; font-style: italic; color: var(--text); line-height: 1; letter-spacing: 0.01em; }
    .logo-sub { font-family: 'Raleway', sans-serif; font-size: 8px; font-weight: 300; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); line-height: 1; }
    .nav-links { display: flex; gap: 40px; list-style: none; }
    .nav-links a { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
    .nav-links a:hover { color: var(--sage-medium); }
    .nav-links a.active { color: var(--gold); font-weight: 600; }

    /* BUTTONS */
    .btn-gold { display: inline-block; font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; background: var(--gold); color: var(--white); border: 1px solid var(--gold); padding: 18px 44px; text-decoration: none; transition: background 0.3s, border-color 0.3s; cursor: pointer; }
    .btn-gold:hover { background: var(--sage-medium); border-color: var(--sage-medium); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(125,143,118,0.32); }
    .btn-outline { display: inline-block; font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; background: transparent; color: var(--sage-medium); border: 1px solid var(--sage-medium); padding: 18px 44px; text-decoration: none; margin-left: 16px; transition: background 0.3s, border-color 0.3s, color 0.3s; cursor: pointer; }
    .btn-outline:hover { background: var(--sage-medium); border-color: var(--sage-medium); color: var(--white); }
    .btn-cream { display: inline-block; font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; background: var(--cream); color: var(--sage-medium); border: 1px solid var(--cream); padding: 18px 44px; text-decoration: none; transition: background 0.3s, color 0.3s; cursor: pointer; }
    .btn-cream:hover { background: transparent; color: var(--cream); }

    /* EYEBROW */
    .eyebrow { font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }

    /* HERO: editorial split */
    .page-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 90vh;
      position: relative;
    }
    .hero-text-panel {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 80px 80px 72px;
      background: var(--cream-deep);
      position: relative;
      z-index: 1;
    }
    .hero-text-panel::after {
      content: '';
      position: absolute;
      top: 10%;
      right: 0;
      width: 1px;
      height: 80%;
      background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
    }
    .hero-text-panel .eyebrow { margin-bottom: 32px; }
    .hero-text-panel h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5vw, 4.8rem);
      font-weight: 300;
      color: var(--text);
      line-height: 1.06;
      margin-bottom: 32px;
      letter-spacing: -0.01em;
    }
    .hero-text-panel h1 em { font-style: italic; color: inherit; }
    .hero-text-panel p {
      font-size: 17px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 2;
      max-width: 400px;
      margin-bottom: 48px;
    }
    .hero-image-panel {
      position: relative;
      overflow: hidden;
      background: var(--sand);
    }
    .hero-image-panel img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .hero-image-panel::after {
      content: '';
      position: absolute;
      inset: 24px;
      border: 1px solid rgba(196,168,130,0.3);
      pointer-events: none;
    }

    /* HERO BLOCKS (replaces hero-image-panel on this page) */
    .hero-blocks { display: grid; grid-template-rows: repeat(3, 1fr); height: 100%; background: var(--cream-deep); }
    .hero-block { padding: 44px 56px; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.4s, transform 0.3s; position: relative; overflow: hidden; text-decoration: none; }
    .hero-block:last-child { border-bottom: none; }
    .hero-block::before { content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 0; background: linear-gradient(to bottom, var(--gold-light), var(--gold)); transition: height 0.45s cubic-bezier(0.25,0.46,0.45,0.94); }
    .hero-block:hover::before { height: 100%; }
    .hero-block:hover { background: var(--cream); }
    .hero-block-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; letter-spacing: 0.08em; color: var(--gold-light); margin-bottom: 12px; display: block; line-height: 1; }
    .hero-block-title { font-family: 'Cormorant Garamond', serif; font-size: 26.5px; font-weight: 400; color: var(--text); line-height: 1.2; }
    .hero-block-desc { font-size: 16px; font-weight: 300; color: var(--text-muted); line-height: 1.75; margin-top: 14px; }
    .hero-block-link { font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease; margin-top: 0; }
    .hero-block:hover .hero-block-link { max-height: 30px; opacity: 1; margin-top: 20px; }

    /* DIVIDER */
    .divider { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 60px 72px; }
    .divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .divider-diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

    /* PHILOSOPHY / STATEMENT: split layout */
    .philosophy {
      display: grid;
      grid-template-columns: 1fr 1fr;
      height: 52vh;
      overflow: hidden;
    }
    .philosophy-text-panel {
      background: var(--sage-medium);
      padding: 0 72px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }
    .philosophy-image-panel {
      position: relative;
      overflow: hidden;
    }
    .philosophy-image-panel img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .philosophy-rule {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 48px;
    }
    .philosophy-rule::before {
      display: none;
    }
    .philosophy-rule-diamond {
      width: 7px; height: 7px;
      border: 1px solid var(--gold-light);
      transform: rotate(45deg);
      flex-shrink: 0;
    }
    .philosophy blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 2.8vw, 2.8rem);
      font-weight: 300;
      font-style: italic;
      color: var(--cream);
      line-height: 1.55;
      margin-bottom: 40px;
      letter-spacing: 0.01em;
    }
    .philosophy blockquote em { color: inherit; font-style: normal; }
    .philosophy-attr {
      font-family: 'Raleway', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold-light);
    }

    /* STORY SECTION */
    .story { background: var(--sand); padding: 120px 72px; }
    .story-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 100px; align-items: start; }
    .story-label { position: sticky; top: 120px; }
    .story-label .eyebrow { margin-bottom: 20px; }
    .story-label h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--text); line-height: 1.2; }
    .story-label h2 em { font-style: italic; color: inherit; }
    .story-content p { font-size: 17px; font-weight: 300; color: var(--text-muted); line-height: 2.1; margin-bottom: 28px; }
    .story-content p:last-child { margin-bottom: 0; }
    .story-content strong { font-weight: 500; color: var(--text); }

    /* PULL QUOTE */
    .pull-quote {
      margin: 52px 0;
      padding: 44px 0;
      border-top: 1px solid rgba(196,168,130,0.3);
      border-bottom: 1px solid rgba(196,168,130,0.3);
      position: relative;
    }
    .pull-quote::before {
      content: '\201C';
      font-family: 'Cormorant Garamond', serif;
      font-size: 7rem;
      color: var(--gold-light);
      position: absolute;
      top: -12px;
      left: -8px;
      line-height: 1;
      opacity: 0.5;
    }
    .pull-quote p {
      font-family: 'Cormorant Garamond', serif !important;
      font-size: clamp(1.55rem, 2.5vw, 2rem) !important;
      font-weight: 300 !important;
      font-style: italic;
      color: var(--text) !important;
      line-height: 1.55 !important;
      margin-bottom: 0 !important;
      padding-left: 20px;
    }

    /* PHOTO BREAK */
    .photo-break {
      position: relative;
      height: 70vh;
      min-height: 480px;
      overflow: hidden;
    }
    .photo-break img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 25%;
      display: block;
    }
    .photo-break-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(58,53,48,0.3) 0%, transparent 50%);
    }
    .photo-break-caption {
      position: absolute;
      bottom: 52px;
      left: 72px;
      z-index: 2;
    }
    .photo-break-caption span {
      font-family: 'Raleway', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
    }

    /* APPROACH SECTION */
    .approach { padding: 120px 72px; background: var(--cream); }
    .approach-inner { max-width: 1100px; margin: 0 auto; }
    .approach-header { text-align: center; margin-bottom: 80px; }
    .approach-header .eyebrow { justify-content: center; }
    .approach-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--text); line-height: 1.25; }
    .approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
    .approach-item {
      padding: 48px 44px;
      border-top: 2px solid var(--gold);
      transition: background 0.3s;
    }
    .approach-item:hover { background: var(--cream-deep); }
    .approach-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--gold-light);
      line-height: 1;
      margin-bottom: 20px;
    }
    .approach-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--text); margin-bottom: 14px; line-height: 1.3; }
    .approach-item p { font-size: 13.5px; font-weight: 300; color: var(--text-muted); line-height: 1.9; }

    /* CTA */
    .cta-banner { background: var(--sage-medium); padding: 120px 72px; text-align: center; }
    .cta-banner .eyebrow { justify-content: center; color: var(--gold-light); }
    .cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 300; color: var(--white); line-height: 1.2; max-width: 600px; margin: 0 auto 16px; }
    .cta-banner p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.65); margin-bottom: 44px; }

    /* FOOTER */
    footer { background: #5C5248; padding: 26px 72px; display: flex; justify-content: space-between; align-items: center; }
    .footer-logo { display: flex; flex-direction: row; align-items: baseline; gap: 12px; text-decoration: none; }
    .footer-logo .logo-word { color: var(--cream); }
    .footer-logo .logo-sub { color: var(--gold-light); }
    footer p { font-size: 11px; font-weight: 300; letter-spacing: 0.1em; color: rgba(255,255,255,0.62); }
    footer a { font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
    footer a:hover { color: var(--white); }

    /* CREDENTIALS STRIP */
    .credentials-strip { background: var(--cream-deep); border-bottom: 1px solid var(--border); padding: 26px 72px; display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
    .credential-item { display: flex; align-items: center; gap: 10px; }
    .credential-dot { width: 5px; height: 5px; min-width: 5px; background: var(--gold); transform: rotate(45deg); }
    .credential-text { font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text); }
    .credentials-label { font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
    .credential-sep { width: 1px; height: 20px; background: var(--border); }

    /* FAQ SECTION */
    .faq-section { padding: 100px 72px; background: var(--sand); }
    .faq-inner { max-width: 860px; margin: 0 auto; }
    .faq-header { margin-bottom: 52px; }
    .faq-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--text); line-height: 1.2; }
    .faq-header h2 em { font-style: italic; color: inherit; }
    .faq-item { border-top: 1px solid var(--border); padding-left: 20px; padding-right: 32px; transition: border-left 0.3s, background 0.3s; border-left: 3px solid transparent; }
    .faq-item:last-child { border-bottom: 1px solid var(--border); }
    .faq-item:hover { background: var(--cream); border-left: 3px solid var(--gold-light); }
    .faq-item.open { background: var(--sand); border-left: 3px solid var(--gold); }
    .faq-q { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 500; color: var(--text); line-height: 1.4; padding: 32px 64px 32px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; position: relative; transition: color 0.2s; }
    .faq-q:hover { color: var(--gold); }
    .faq-item.open .faq-q { color: var(--gold); }
    .faq-q::after { content: ''; width: 10px; height: 10px; border-right: 2.5px solid var(--gold); border-bottom: 2.5px solid var(--gold); transform: rotate(45deg); transition: transform 0.3s ease; flex-shrink: 0; position: absolute; right: 4px; top: 50%; margin-top: -7px; }
    .faq-item.open .faq-q::after { transform: rotate(-135deg); margin-top: -2px; }
    .faq-a { font-size: 13.5px; font-weight: 300; color: var(--text-muted); line-height: 1.9; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding-bottom: 0; }
    .faq-item.open .faq-a { max-height: 400px; padding-bottom: 28px; }

    /* MOBILE */
    @media (max-width: 768px) {
      body { overflow-x: hidden; }
      nav { padding: 16px 20px; }
      .nav-links { display: none !important; }
      .nav-toggle { display: flex !important; }

      .page-hero { grid-template-columns: 1fr; min-height: unset; }
      .hero-text-panel { padding: 52px 20px; }
      .hero-text-panel h1 { font-size: 2.6rem; }
      .hero-text-panel::after { display: none; }
      .hero-blocks { height: auto; }
      .hero-block { padding: 28px 20px; }
      .btn-gold { padding: 16px 20px; }
      .btn-outline { margin-left: 0; margin-top: 12px; display: block; text-align: center; padding: 16px 20px; }

      .credentials-strip { padding: 20px 20px; gap: 14px; justify-content: flex-start; }
      .credential-sep { display: none; }

      .divider { padding: 32px 20px; }

      .philosophy { grid-template-columns: 1fr; height: auto; }
      .philosophy-text-panel { padding: 52px 20px; }
      .philosophy-image-panel { height: 56vw; }

      .story { padding: 60px 20px; }
      .story-inner { grid-template-columns: 1fr; gap: 32px; }
      .story-label { position: static; }

      .pull-quote { margin: 36px 0; }

      .photo-break { height: 50vw; min-height: 220px; }
      .photo-break-caption { left: 20px; bottom: 24px; }

      .approach { padding: 60px 20px; }
      .approach-grid { grid-template-columns: 1fr; }
      .approach-item { padding: 36px 0; }

      .faq-section { padding: 60px 20px; }
      .faq-q { font-size: 1.2rem; padding: 24px 44px 24px 0; }
      .faq-item { padding-left: 0; padding-right: 16px; }

      .btn-gold, .btn-white-outline, .btn-sage-outline, .btn-cream, .btn-outline, .btn-outline-gold { padding: 15px 28px; font-size: 11px; letter-spacing: 0.2em; }

      .cta-banner { padding: 60px 20px; }

      footer { padding: 28px 20px; flex-direction: column; gap: 12px; text-align: center; }
    }

    /* MOBILE NAV TOGGLE */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px 4px;
      z-index: 101;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--text);
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* MOBILE NAV OVERLAY */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(250,246,241,0.97);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 44px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Raleway', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .mobile-nav a:hover { color: var(--sage-medium); }
    .mobile-nav a.active { color: var(--gold); font-weight: 600; }
