@charset "UTF-8";

/* ===================================
   Amistad Golf LP
   Design tokens
=================================== */

:root {

    /* Palette — fairway green / antique brass / ivory paper.
       Drawn from the clubhouse: bottle-green greens, brass fittings,
       ivory scorecards — not a generic accent color. */
    --pine:        #16352a;
    --pine-deep:   #0b2119;
    --pine-soft:   #24483a;
    --sand:        #f5efe2;
    --paper:       #fffcf5;
    --sage:        #e8ede3;
    --brass:       #a9822f;
    --brass-light: #cda868;
    --ink:         #1f261f;
    --ink-soft:    #57604f;

    --line:        rgba(22,53,42,.14);
    --line-dark:   rgba(245,239,226,.22);

    --serif-jp: "Noto Serif JP", serif;
    --sans-jp:  "Noto Sans JP", sans-serif;
    --serif-en: "Cormorant Garamond", "Noto Serif JP", serif;

}


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


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    color: var(--ink);
    font-family: var(--sans-jp);
    font-weight: 300;
    line-height: 2;
    letter-spacing: .03em;
    background: var(--paper);
}


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


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


h1, h2, h3 {
    font-family: var(--serif-jp);
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: .04em;
    margin: 0;
}


p {
    margin: 0;
}


@media (prefers-reduced-motion: reduce) {

    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }

}


:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 3px;
}


/* ===================================
   Layout helpers
=================================== */


.section {
    padding: 140px 24px;
}


.inner {
    max-width: 1180px;
    margin: 0 auto;
}


.bg-sand   { background: var(--sand); }
.bg-sage   { background: var(--sage); }
.bg-pine   { background: var(--pine); }


.white     { color: var(--paper); }


.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--serif-en);
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: .28em;
    color: var(--brass);
}


.eyebrow::before {
    content: "";
    display: block;
    width: 36px;
    height: 1px;
    background: var(--brass);
}


.eyebrow.center {
    justify-content: center;
}


.white .eyebrow,
.white .eyebrow::before {
    color: var(--brass-light);
    background: var(--brass-light);
}


.section-head {
    margin-bottom: 64px;
}


.section-head.center {
    text-align: center;
}


.section-head h2 {
    font-size: clamp(30px, 3.6vw, 44px);
    margin-top: 18px;
}


/* corner-tick accent — a brass plaque mark borrowed from
   clubhouse honour-boards, reused on every framed photo */
.corner-frame {
    position: relative;
}


.corner-frame::before,
.corner-frame::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--brass);
    pointer-events: none;
}


.corner-frame::before {
    top: -12px;
    left: -12px;
    border-right: none;
    border-bottom: none;
}


.corner-frame::after {
    bottom: -12px;
    right: -12px;
    border-left: none;
    border-top: none;
}


/* ===================================
   Header
=================================== */


.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    padding: 32px 48px;
}


.header-logo a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}


.header-logo img {
    height: 24px;
    width: auto;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,.45));
}


.header-logo .sub {
    font-size: 11px;
    letter-spacing: .3em;
    color: var(--brass-light);
    padding-top: 2px;
    text-shadow: 0 1px 4px rgba(0,0,0,.8), 0 1px 14px rgba(0,0,0,.6);
}


.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 65%, rgba(0,0,0,0) 100%);
    z-index: -1;
    pointer-events: none;
}


/* ===================================
   Hero
=================================== */


.hero {
    height: 100vh;
    min-height: 720px;
    position: relative;
    overflow: hidden;
}


.hero-image {
    position: absolute;
    inset: 0;
}


.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    opacity: 0;
    animation: hero-reveal 2.4s cubic-bezier(.16,.7,.24,1) forwards;
}


@keyframes hero-reveal {
    0%   { opacity: 0; transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11,33,25,.72) 0%, rgba(11,33,25,.45) 25%, rgba(11,33,25,.32) 45%, rgba(11,33,25,.7) 100%);
}


.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 1180px;
    margin: auto;
    padding: 40px 48px;
    color: var(--paper);
}


.hero-panel {
    max-width: 620px;
    padding: 6px 0 6px 34px;
    border-left: 1px solid var(--brass-light);
}


.hero-sub {
    font-family: var(--serif-en);
    font-style: italic;
    font-size: 16px;
    letter-spacing: .32em;
    color: var(--brass-light);
    text-shadow: 0 1px 4px rgba(0,0,0,.8), 0 1px 16px rgba(0,0,0,.6);
}


.hero h1 {
    font-size: clamp(38px, 5.6vw, 72px);
    margin: 26px 0;
    color: var(--paper);
    text-wrap: balance;
}


.hero-text {
    font-size: 17px;
    font-weight: 300;
    line-height: 2;
    color: rgba(255,252,245,.88);
}


.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 40px;
    z-index: 2;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,252,245,.75);
    font-family: var(--serif-en);
    font-style: italic;
    font-size: 13px;
    letter-spacing: .2em;
}


.scroll-cue::after {
    content: "";
    width: 1px;
    height: 46px;
    background: rgba(255,252,245,.5);
    animation: scroll-cue-move 2.2s ease-in-out infinite;
}


@keyframes scroll-cue-move {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
    40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}


/* ===================================
   SEO intro
=================================== */


.seo-intro {
    padding: 90px 24px;
    background: var(--sand);
    border-bottom: 1px solid var(--line);
}


.seo-text {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}


.seo-text h2 {
    font-size: clamp(22px, 2.6vw, 28px);
    margin-bottom: 26px;
}


.seo-text p {
    color: var(--ink-soft);
}


/* ===================================
   Intro
=================================== */


.intro {
    text-align: center;
}


.intro p {
    max-width: 640px;
    margin: 26px auto;
    color: var(--ink-soft);
}


.pull-quote {
    max-width: 640px;
    margin: 50px auto 0;
    padding: 38px 10px 0;
    border-top: 1px solid var(--line);
    font-family: var(--serif-jp);
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--pine);
}


/* ===================================
   Flow (timeline)
=================================== */


.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px;
}


.flow-item {
    position: relative;
}


.flow-item .flow-index {
    display: block;
    font-family: var(--serif-en);
    font-style: italic;
    font-size: 15px;
    letter-spacing: .1em;
    color: var(--brass);
    margin-bottom: 16px;
}


.flow-item .flow-image {
    border-radius: 2px;
    overflow: hidden;
    margin: 0 12px 26px;
}


.flow-item img {
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.16,.7,.24,1);
}


.flow-item:hover img {
    transform: scale(1.06);
}


.flow-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}


.flow-item p {
    color: var(--ink-soft);
    font-size: 15px;
}


.flow-connector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px 0 56px;
    color: var(--brass);
}


.flow-connector::before,
.flow-connector::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--line);
}


/* ===================================
   Local area
=================================== */


.local-area p {
    max-width: 760px;
    color: var(--ink-soft);
}


/* ===================================
   Model
=================================== */


.model-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}


.model-image {
    margin: 14px;
}


.model-box img {
    border-radius: 2px;
}


.timeline-item h3 {
    font-size: 21px;
    margin-bottom: 8px;
}


.timeline-item p {
    margin: 0;
    color: var(--ink-soft);
}


.timeline-item {
    position: relative;
    padding-left: 34px;
    padding-bottom: 40px;
    border-left: 1px solid var(--line);
    margin-left: 4px;
}


.timeline-item:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}


.timeline-item::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 3px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brass);
}


.timeline-time {
    display: block;
    font-family: var(--serif-en);
    font-style: italic;
    font-size: 17px;
    letter-spacing: .05em;
    color: var(--brass);
    margin-bottom: 8px;
}


/* ===================================
   Reason (dark)
=================================== */


.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line-dark);
    border: 1px solid var(--line-dark);
}


.reason-card {
    background: var(--pine);
    padding: 44px 38px;
    transition: background .4s ease;
}


.reason-card:hover {
    background: var(--pine-soft);
}


.reason-icon {
    width: 40px;
    height: 40px;
    color: var(--brass-light);
    margin-bottom: 26px;
}


.reason-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.reason-card h3 {
    font-size: 19px;
    color: var(--paper);
    margin-bottom: 14px;
}


.reason-card p {
    font-size: 14.5px;
    color: rgba(245,239,226,.72);
}


/* ===================================
   Feature (image + text)
=================================== */


.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}


.feature-grid.reverse .feature-image {
    order: 2;
}


.feature-image {
    margin: 14px;
}


.feature-image img {
    border-radius: 2px;
    transition: transform 1s cubic-bezier(.16,.7,.24,1);
}


.feature-image:hover img {
    transform: scale(1.04);
}


.feature-text h2 {
    font-size: clamp(28px, 3.2vw, 38px);
    margin-top: 16px;
}


.feature-text p {
    margin: 20px 0;
    color: var(--ink-soft);
}


.btn-ghost {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 34px;
    border: 1px solid var(--pine);
    border-radius: 2px;
    font-size: 13px;
    letter-spacing: .16em;
    color: var(--pine);
    transition: background .3s ease, color .3s ease;
}


.btn-ghost:hover {
    background: var(--pine);
    color: var(--paper);
}


/* external-link indicator, used on any link that opens in a new tab */
.link-icon {
    width: 12px;
    height: 12px;
    margin-left: 7px;
    margin-bottom: -1px;
    display: inline-block;
    vertical-align: middle;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.check-list {
    padding: 0;
    list-style: none;
    margin-top: 26px;
}


.check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 14px 0;
    color: var(--ink-soft);
}


.check-list li::before {
    content: "";
    flex-shrink: 0;
    width: 12px;
    height: 1px;
    background: var(--brass);
}


/* ===================================
   Hours table
=================================== */


.hours-table {
    margin-top: 32px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    max-width: 360px;
}


.hours-label {
    font-family: var(--serif-en);
    font-style: italic;
    font-size: 14px;
    letter-spacing: .08em;
    color: var(--brass);
    margin-bottom: 12px;
}


.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--ink-soft);
    font-size: 15px;
}


.hours-row span:first-child {
    color: var(--ink);
    font-weight: 500;
}


.hours-row span:last-child {
    font-variant-numeric: tabular-nums lining-nums;
}


.hours-table.center {
    margin-left: auto;
    margin-right: auto;
}


.hours-table.center .hours-label {
    text-align: center;
}


/* ===================================
   Practice badges
=================================== */


.practice-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
}


.badge-rect {
    border: 1.5px solid var(--pine);
    border-radius: 6px;
    padding: 26px 18px;
    min-height: 104px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}


.badge-line {
    font-size: 14px;
    letter-spacing: .04em;
    color: var(--ink-soft);
}


.badge-line.strong {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--brass);
}


@media (max-width: 700px) {

    .practice-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 50px;
        padding-top: 36px;
    }

}


/* ===================================
   Amenity grid — 3 cols (PC) / 2 cols (mobile)
=================================== */


.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 30px;
    margin-top: 90px;
}


.amenity-photo {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin: 0 14px;
}


.amenity-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: transform 1s cubic-bezier(.16,.7,.24,1);
}


.amenity-item:hover .amenity-photo img {
    transform: scale(1.05);
}


.amenity-label {
    margin-top: 18px;
    text-align: center;
    font-size: 15px;
    letter-spacing: .08em;
    color: var(--ink-soft);
}


@media (max-width: 900px) {

    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 60px;
    }

}


/* ===================================
   Food
=================================== */


.food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}


.food-card {
    overflow: hidden;
}


.food-card .food-image {
    overflow: hidden;
    margin-bottom: 26px;
}


.food-card img {
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform .9s cubic-bezier(.16,.7,.24,1);
}


.food-card:hover img {
    transform: scale(1.05);
}


.food-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}


.food-distance {
    display: inline-block;
    font-family: var(--serif-en);
    font-style: italic;
    font-size: 14px;
    letter-spacing: .04em;
    color: var(--brass);
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--line);
}


.food-card p {
    color: var(--ink-soft);
    font-size: 15px;
}


.food-map {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
    text-align: center;
}


.food-map p {
    color: var(--ink-soft);
    margin-bottom: 24px;
}


/* ===================================
   FAQ
=================================== */


.faq-list {
    max-width: 860px;
    margin: 0 auto;
}


.faq-item {
    border-bottom: 1px solid var(--line);
}


.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 4px;
    cursor: pointer;
    font-family: var(--serif-jp);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item .q-mark {
    font-family: var(--serif-en);
    font-style: italic;
    color: var(--brass);
    margin-right: 14px;
}


.faq-item .toggle {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    position: relative;
}


.faq-item .toggle::before,
.faq-item .toggle::after {
    content: "";
    position: absolute;
    background: var(--pine);
    top: 50%;
    left: 50%;
    transition: transform .3s ease;
}


.faq-item .toggle::before {
    width: 16px;
    height: 1px;
    transform: translate(-50%, -50%);
}


.faq-item .toggle::after {
    width: 1px;
    height: 16px;
    transform: translate(-50%, -50%);
}


.faq-item[open] .toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}


.faq-item p {
    padding: 0 4px 32px 50px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
}


/* ===================================
   Access
=================================== */


.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.access-info p {
    color: var(--ink-soft);
    margin: 18px 0;
}


.access-info p.access-name {
    font-family: var(--serif-jp);
    font-weight: 700;
    font-size: 23px;
    color: var(--pine);
    letter-spacing: .06em;
    margin: 0 0 10px;
}


.access-info address {
    display: block;
    font-style: normal;
    font-family: var(--sans-jp);
    font-weight: 400;
    font-size: 16px;
    color: var(--ink-soft);
    letter-spacing: .02em;
}


.map-frame {
    height: 360px;
    border: 1px solid var(--line);
    overflow: hidden;
}


.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.25) sepia(.08);
}


.map-app-link {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    font-size: 13px;
    letter-spacing: .08em;
    color: var(--pine);
    border-bottom: 1px solid transparent;
    transition: color .3s ease, border-color .3s ease;
}


.map-app-link:hover {
    color: var(--brass);
    border-color: var(--brass);
}


/* ===================================
   Reservation
=================================== */


.reservation {
    background: var(--pine);
    color: var(--paper);
    padding: 130px 24px;
    text-align: center;
    position: relative;
}


.reservation-inner {
    position: relative;
    z-index: 2;
}


.reservation h2 {
    font-size: clamp(30px, 4vw, 46px);
    color: var(--paper);
}


.reservation p {
    margin: 26px 0 0;
    color: rgba(245,239,226,.8);
}


.reservation-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}


.btn-outline {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--brass-light);
    border-radius: 2px;
    font-size: 13px;
    letter-spacing: .16em;
    color: var(--brass-light);
    transition: background .3s ease, color .3s ease, border-color .3s ease;
}


.btn-outline:hover {
    background: var(--brass-light);
    border-color: var(--brass-light);
    color: var(--pine-deep);
}


/* ===================================
   Footer
=================================== */


.footer {
    padding: 44px 24px 110px;
    text-align: center;
    background: var(--pine-deep);
    color: rgba(245,239,226,.55);
    font-size: 13px;
    letter-spacing: .1em;
}


.footer-nap {
    display: block;
    font-style: normal;
    font-size: 12px;
    letter-spacing: .05em;
    margin-bottom: 12px;
    color: rgba(245,239,226,.6);
}


/* ===================================
   Scroll-fade animation
=================================== */


.fade-target {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s cubic-bezier(.16,.7,.24,1), transform .9s cubic-bezier(.16,.7,.24,1);
}


.fade-target.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===================================
   Fixed reservation (mobile CTA)
=================================== */


.fixed-reservation {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 300;
    display: flex;
    gap: 10px;
    animation: cta-in .6s cubic-bezier(.16,.7,.24,1) .3s both;
}


@keyframes cta-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}


.fixed-reservation a,
.fixed-reservation span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 25px;
    border-radius: 2px;
    color: var(--paper);
    font-size: 13px;
    letter-spacing: .1em;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}


.fixed-reservation .btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.web-btn {
    background: linear-gradient(135deg, var(--brass-light), var(--brass));
    font-weight: 700;
}


.tel-btn { background: var(--pine); }


.tel-btn-display {
    cursor: default;
    letter-spacing: .04em;
}


/* Desktop: clicking tel: links does nothing, so show the number as plain text */
@media (min-width: 701px) {
    .fixed-reservation .tel-btn-call {
        display: none;
    }
}


/* Mobile: keep the tap-to-call button */
@media (max-width: 700px) {
    .fixed-reservation .tel-btn-display {
        display: none;
    }
}


/* ===================================
   Responsive
=================================== */


@media (max-width: 900px) {

    .section {
        padding: 90px 20px;
    }

    .header {
        padding: 18px 20px;
    }

    .flow-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
    }

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

    .feature-grid,
    .model-box,
    .food-grid,
    .access-grid,
    .section-head-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-grid.reverse .feature-image {
        order: 0;
    }

    .hero-panel {
        padding-left: 22px;
    }

    .hero-text {
        font-size: 15px;
    }

}


@media (max-width: 560px) {

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

    .section-head {
        margin-bottom: 44px;
    }

    .hotel-gallery {
        grid-template-columns: 1fr;
    }

    .hotel-gallery .gallery-item.main,
    .hotel-gallery .gallery-item:not(.main) {
        grid-column: 1;
    }

}


@media (max-width: 700px) {

    .fixed-reservation {
        left: 15px;
        right: 15px;
        bottom: 15px;
        gap: 8px;
    }

    .fixed-reservation a,
    .fixed-reservation span {
        flex: 1;
        padding: 14px 5px;
        font-size: 13px;
    }

}
