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

  :root {
    --ink: #111010;
    --paper: #f6f3ee;
    --warm: #e8e0d5;
    --accent: #8b6b47;
    --accent2: #c8392b;
    --mid: #6b655e;
    --rule: #d5cec5;
  }

  html { scroll-behavior: smooth; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 3rem;
    background: rgba(246,243,238,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
    animation: fadeDown 0.8s ease both;
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
  .nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta {
    background: var(--ink) !important;
    color: var(--paper) !important;
    padding: 0.55rem 1.4rem;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--accent) !important; color: var(--paper) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    padding-top: 4rem;
  }
  .hero-img {
    position: relative;
    overflow: hidden;
  }
  .hero-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(15%) contrast(1.05);
  }
  .hero-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--paper) 100%);
  }
  .hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem 5rem 2rem;
    animation: fadeUp 1s 0.4s ease both;
  }
  .overline {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .overline::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--accent);
  }
  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 1.8rem;
    letter-spacing: -0.01em;
  }
  .hero-headline strong {
    font-weight: 600;
    font-style: italic;
    color: var(--accent);
  }
  .hero-sub {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--mid);
    max-width: 40ch;
    margin-bottom: 3rem;
  }
  .btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    display: inline-block;
    background: var(--ink);
    color: var(--paper);
    padding: 0.9rem 2rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s;
  }
  .btn-primary:hover { background: var(--accent); }
  .btn-ghost {
    display: inline-block;
    border: 1px solid var(--rule);
    color: var(--mid);
    padding: 0.9rem 2rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
  }
  .btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

  /* TICKER */
  .ticker {
    background: var(--ink);
    padding: 0.85rem 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .ticker-inner {
    display: inline-block;
    animation: ticker 30s linear infinite;
  }
  .ticker span {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(246,243,238,0.6);
    padding: 0 2.5rem;
  }
  .ticker span.hi { color: var(--paper); }

  /* ABOUT */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--rule);
  }
  .about-img {
    position: relative;
    overflow: hidden;
    min-height: 600px;
  }
  .about-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(20%);
    transition: transform 0.8s ease;
  }
  .about-img:hover img { transform: scale(1.03); }
  .about-content {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--rule);
  }
  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1px;
    background: var(--accent);
  }
  .section-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 2rem;
  }
  .section-h2 em { font-style: italic; color: var(--accent); font-weight: 600; }
  .about-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--mid);
    margin-bottom: 1.2rem;
    max-width: 50ch;
  }
  .about-content p strong { color: var(--ink); font-weight: 500; }
  .stat-row {
    display: flex; gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--rule);
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
  }
  .stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 0.3rem;
  }

  /* SERVICES */
  .services { border-top: 1px solid var(--rule); }
  .services-header {
    padding: 4rem 3rem 3rem;
    border-bottom: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .services-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.0;
  }
  .services-header h2 em { font-style: italic; font-weight: 600; color: var(--accent); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card {
    padding: 3.5rem 3rem;
    border-right: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .service-card:last-child { border-right: none; }
  .service-card:hover { background: var(--warm); }
  .service-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
  }
  .service-card:hover::before { transform: scaleY(1); }
  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--rule);
    line-height: 1;
    margin-bottom: 1.5rem;
  }
  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .service-desc {
    font-size: 0.93rem;
    line-height: 1.8;
    color: var(--mid);
  }

  /* COASTAL BREAK */
  .coastal-break {
    position: relative;
    height: 70vh;
    overflow: hidden;
    border-top: 1px solid var(--rule);
  }
  .coastal-break img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(30%) contrast(1.1);
  }
  .coastal-break-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(17,16,16,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 4rem 3rem;
  }
  .coastal-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    font-style: italic;
    font-weight: 300;
    color: var(--paper);
    max-width: 30ch;
    line-height: 1.35;
  }
  .coastal-quote strong {
    font-weight: 600;
    color: rgba(246,243,238,0.9);
  }

  /* APPROACH */
  .approach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--rule);
  }
  .approach-left {
    padding: 5rem 4rem;
    border-right: 1px solid var(--rule);
  }
  .approach-left p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--mid);
    margin-bottom: 1.2rem;
    max-width: 45ch;
  }
  .approach-right { padding: 5rem 4rem; }
  .approach-item {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--rule);
  }
  .approach-item:last-child { border-bottom: none; }
  .approach-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    padding-top: 0.1rem;
  }
  .approach-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
  }
  .approach-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--mid);
  }

  /* CTA */
  .cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--rule);
  }
  .cta-img {
    position: relative;
    overflow: hidden;
    min-height: 500px;
  }
  .cta-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .cta-right {
    padding: 5rem 4rem;
    border-left: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--ink);
  }
  .cta-right .section-label { color: var(--accent); }
  .cta-right .section-label::before { background: var(--accent); }
  .cta-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 3.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--paper);
    margin-bottom: 1.5rem;
  }
  .cta-h2 em { font-style: italic; font-weight: 600; color: rgba(200,168,130,0.9); }
  .cta-right p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(246,243,238,0.6);
    margin-bottom: 1.2rem;
    max-width: 45ch;
  }
  .contact-details {
    margin-top: 2.5rem;
    border-top: 1px solid rgba(246,243,238,0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .contact-item-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(246,243,238,0.35);
    margin-bottom: 0.2rem;
  }
  .contact-item-val,
  a.contact-item-val,
  .cta-right a,
  .cta-right a:visited,
  .cta-right a:link {
    font-size: 0.95rem;
    color: var(--paper) !important;
    text-decoration: none !important;
    transition: color 0.2s;
  }
  .contact-item-val:hover,
  a.contact-item-val:hover,
  .cta-right a:hover { color: rgba(200,168,130,0.9) !important; }
  .cta-left a.btn-primary { color: var(--paper) !important; }

  /* FOOTER */
  footer {
    background: var(--ink);
    border-top: 1px solid rgba(246,243,238,0.08);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--paper);
  }
  .footer-copy {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(246,243,238,0.3);
  }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(246,243,238,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--paper); }

  /* ANIMATIONS */
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.animate-ready {
    opacity: 0;
    transform: translateY(20px);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .hero { grid-template-columns: 1fr; }
    .hero-img { height: 70vw; min-height: 300px; }
    .hero-right { padding: 3rem 1.5rem; }
    .about, .approach, .cta { grid-template-columns: 1fr; }
    .about-img { min-height: 400px; }
    .about-content { border-left: none; border-top: 1px solid var(--rule); padding: 3rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { border-right: none; border-bottom: 1px solid var(--rule); }
    .services-header { flex-direction: column; gap: 1rem; padding: 3rem 1.5rem 2rem; }
    .approach-left { border-right: none; border-bottom: 1px solid var(--rule); padding: 3rem 1.5rem; }
    .approach-right { padding: 3rem 1.5rem; }
    .cta-img { min-height: 350px; }
    .cta-right { padding: 3rem 1.5rem; border-left: none; border-top: 1px solid rgba(246,243,238,0.1); }
    .coastal-break { height: 60vw; }
    footer { flex-direction: column; gap: 1.2rem; text-align: center; padding: 2rem 1.5rem; }
    .footer-links { justify-content: center; }
    .stat-row { gap: 2rem; flex-wrap: wrap; }
  }

  /* INSIGHTS */
  .insights { border-top: 1px solid var(--rule); }
  .insights-header {
    padding: 4rem 3rem 3rem;
    border-bottom: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .insight-card {
    padding: 3.5rem 3rem;
    border-right: 1px solid var(--rule);
    position: relative;
  }
  .insight-card:last-child { border-right: none; }
  .insight-card:hover { background: var(--warm); }
  .insight-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
  }
  .insight-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--ink);
  }
  .insight-body {
    font-size: 0.93rem;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 0.8rem;
  }
  .insight-question {
    font-style: italic;
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    margin-top: 1.2rem;
  }
  .insight-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0.15rem;
    transition: color 0.2s, border-color 0.2s;
  }
  .insight-link:hover { color: var(--ink); border-color: var(--ink); }

  @media (max-width: 900px) {
    .insights-grid { grid-template-columns: 1fr; }
    .insight-card { border-right: none; border-bottom: 1px solid var(--rule); }
    .insights-header { flex-direction: column; gap: 1.5rem; padding: 3rem 1.5rem 2rem; }
  }


  /* NEWSLETTER */
  .newsletter {
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .newsletter-left {
    padding: 5rem 3rem;
    border-right: 1px solid var(--rule);
  }
  .newsletter-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.2rem;
  }
  .newsletter-left h2 em { font-style: italic; font-weight: 600; color: var(--accent); }
  .newsletter-left p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--mid);
    max-width: 45ch;
    margin-bottom: 0.8rem;
  }
  .newsletter-right {
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 420px;
  }
  .form-row { display: flex; gap: 1rem; }
  .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
  }
  .form-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
  }
  .form-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--rule);
    padding: 0.6rem 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-input:focus { border-color: var(--ink); }
  .form-input::placeholder { color: var(--rule); }
  .newsletter-note {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: var(--mid);
    margin-top: 0.5rem;
  }
  @media (max-width: 900px) {
    .newsletter { grid-template-columns: 1fr; }
    .newsletter-left { border-right: none; border-bottom: 1px solid var(--rule); padding: 3rem 1.5rem; }
    .newsletter-right { padding: 3rem 1.5rem; }
    .form-row { flex-direction: column; }
  }
